HTML5新增的5个语义标签

版权声明:随便转载 https://blog.csdn.net/a732894380/article/details/83341339

语义化标签最大的作用就是利于SEO

<!doctype html>
<html lang="en">
 <head>
  <meta charset="UTF-8">
  <meta name="Generator" content="EditPlus®">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
  <title>Document</title>
  <style>
 

  </style>
 </head>
 <body>
     <header>我是头部</header>
	 <nav>我这里放导航</nav>
	 <aside>侧边的小块信息</aside> 
	 <article>
	    <p>发布时间<time>2018年10月24日</time></p>
		<h1>我是文章的标题</h1>
		<p>p1</p>
	    <p>p2</p>
	    <p>p3</p>
	 </article>
	 <footer>我这里放版权信息</footer>
 </body>
</html>

猜你喜欢

转载自blog.csdn.net/a732894380/article/details/83341339