欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

元素标签与属性 使用例子

程序员文章站 2022-05-08 11:11:02
...
  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>