1. article元素代表文档,页面或者应用程序中独立的,完整的,可以被外部独立引用的内容,它可以是一篇博客或者报刊中的文章,一篇论坛帖子,一段用户的独立评论或者独立的插件。
2.article元素可以用来嵌套
3.artclie元素可以用来表示插件
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<a href="" tabindex="3">hello</a>
<a href="" tabindex="2">hello</a>
<a href="" tabindex="1">hello</a>
<br><br>
<!-- artclie元素 独立的文档 -->
<article>
<!-- 头部 -->
<header>
<!-- 标题 -->
<h2>这个是独立文档的标题</h2>
<p>这个是独立文档头部的内容</p>
</header>
<!-- 这个是内容 -->
<p>我是正文的内容</p>
<!-- artclie 可以再被嵌套 这个是第二段-->
<article>
可以用来表示被嵌套
</article>
<!-- 这个是尾部 -->
<footer>
<p>我是底部</p>
</footer>
</article>
<!-- 这个是作为插件 -->
<article>
<h2>这个是一个内嵌界面</h2>
<object>
<embed src="" type="" width="60px" height="60px"></embed>
</object>
</article>
</body>
</html>