2_标签.html 680 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <!--
  11. <header>定义页眉 (页面的顶部,文档的头部区域)
  12. <nav>定义导航栏
  13. <section> 定义文档中的某一块区域
  14. <aside> 定义页面内容之外的部(侧边栏)
  15. <footer>定义页脚(页面的底部)
  16. <aside> 定义一个文章的区域
  17. -->
  18. <header></header>
  19. <nav></nav>
  20. <section></section>
  21. <aside></aside>
  22. <footer></footer>
  23. <article></article>
  24. </body>
  25. </html>