2_标签.html 663 B

1234567891011121314151617181920212223242526
  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. <!-- div p img a ul li ol button -->
  11. <!--
  12. <header>定义section或者page的页眉
  13. <nav>定义导航栏
  14. <section>定义文档中的某一块区域
  15. <aside>定义页面内容之外的内容(侧边栏)
  16. <footer>定义section或者page的页脚
  17. <article>定义文章
  18. -->
  19. <header></header>
  20. <nav></nav>
  21. <section></section>
  22. <aside></aside>
  23. <footer></footer>
  24. <article></article>
  25. </body>
  26. </html>