博客列表 >HTML_001_语义化结构元素

HTML_001_语义化结构元素

CLAY
CLAY原创
2020年09月29日 13:55:09421浏览

元素标签与属性

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta
  6. name="viewport"
  7. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
  8. />
  9. <meta http-equiv="X-UA-Compatible" content="ie=edge" />
  10. <title>元素标签与属性</title>
  11. <link rel="stylesheet" href="css/demo1.css" />
  12. </head>
  13. <body>
  14. <!-- 页眉 -->
  15. <header>
  16. <h1>&lt;header&gt;</h1>
  17. </header>
  18. <div class="container">
  19. <!-- 边栏 -->
  20. <aside>
  21. <h1>&lt;aside&gt;</h1>
  22. </aside>
  23. <main>
  24. <h1>&lt;main&gt;</h1>
  25. <div>
  26. <section>
  27. <h1>&lt;section1&gt;</h1>
  28. </section>
  29. <section>
  30. <h1>&lt;section2&gt;</h1>
  31. </section>
  32. </div>
  33. </main>
  34. </div>
  35. <footer>
  36. <h1>&lt;footer&gt;</h1>
  37. </footer>
  38. </body>
  39. </html>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议