Home > Article > Web Front-end > What does the article tag do?
Function: The function of the article tag in HTML is 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 or content from other external sources. [Recommended tutorial: HTML tutorial]
Description: The
Note: Internet Explorer 8 and earlier versions do 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 above is the detailed content of What does the article tag do?. For more information, please follow other related articles on the PHP Chinese website!