博客列表 >元素标签与属性 使用例子

元素标签与属性 使用例子

异乡客
异乡客原创
2021年12月16日 19:34:181062浏览
  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>元素标签与属性</title>
  7. </head>
  8. <body>
  9. <!--页眉-->
  10. <!-- <div class="header">页眉</div> -->
  11. <header>
  12. <h1>&lt;header&gt;</h1>
  13. </header>
  14. <div class="container">
  15. <!--边栏-->
  16. <aside>
  17. <h1>&lt;aside&gt;</h1>
  18. </aside>
  19. <!--主体区-->
  20. <main>
  21. <h1>&lt;main&gt;</h1>
  22. </main>
  23. </div>
  24. <section>
  25. <h1>&lt;section1&gt;</h1>
  26. </section>
  27. <section>
  28. <h1>&lt;section2&gt;</h1>
  29. </section>
  30. <!--页脚-->
  31. <header>
  32. <h1>&lt; footer &gt;</h1>
  33. </header>
  34. </body>
  35. </html>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议
Teddy2021-12-16 19:34:371楼
测试···········