What does the article tag do?

云罗郡主
Release: 2019-02-01 14:56:38
Original
9721 people have browsed it

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]

What does the article tag do?

Description: The

tag specifies independent self-contained content. An article should have its own meaning and it should be possible to distribute it independently of the rest of the site.

Note: Internet Explorer 8 and earlier versions do not support the

tag.

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>
Copy after login


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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template