html article tag is used to specify independent self-contained content, where the external content is a new article from an external news provider, or text from a blog, or text from a forum, or from other sources External source content.
#html How to use the article tag?
Function: The function of the article tag in
html is to specify independent self-contained content, where the external content is from an external news provider A new article, either text from a blog, text from a forum, or content from other external sources.
Description:
Note: Internet Explorer 8 and earlier does not support the
html article tag example
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <article> <h1>独孤九贱</h1> <p>独孤九贱是PHP中文网的朱老师发布的关于PHP的一系列教程.....</p> </article> </body> </html>
The effect is as follows:
The above is the detailed content of How to use html article tag. For more information, please follow other related articles on the PHP Chinese website!