2.标签.html 704 B

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