Blogger Information
Blog 5
fans 0
comment 0
visits 2778
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
语义化结构元素的种类与用途
帝踏锋
Original
522 people have browsed it

1. 常用标签

序号 标签 名称 描述
1 <h1>-<h6> 标题 通常用来划分或标注内容中的文本段落
2 <header> 页眉 一般是由导航, logo 等元素组成
3 <footer> 页脚 一般是由友情链接,联系方式,备案号,版权等信息组成
4 <nav> 导航 导航通常是由一个或多个链接标签<a>标签组成
5 <main> 主体 展示页面主体内容,建议一个页面,只出现一次
6 <article> 文档 本义是文档, 实际上可以充当其它内容的容器
7 <aside> 边栏 与主体无关的信息(广告位, 相关推荐, 阅读排行等)
8 <section> 区块 文档或主体中的通用小组件
9 <div> 容器 本身无任何语义,通过它的属性来描述用途
10 <p> 段落 文本类的段落结构标签

2.html代码

  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. <link rel="stylesheet" href="style.css">
  8. </head>
  9. <body>
  10. <!-- 页眉 -->
  11. <header>
  12. <h1>&lt;header&gt;</h1>
  13. </header>
  14. <!-- 主体区 -->
  15. <div class="container">
  16. <!-- 边栏 -->
  17. <aside>
  18. <h1>&lt;aside&gt;</h1>
  19. </aside>
  20. <!-- 主题内容区 -->
  21. <main>
  22. <h1>&lt;main&gt;</h1>
  23. <div>
  24. <!-- 部件小区块 -->
  25. <section>
  26. <h1>&lt;section&gt;</h1>
  27. </section>
  28. <section>
  29. <h1>&lt;section&gt;</h1>
  30. </section>
  31. </div>
  32. </main>
  33. </div>
  34. <!-- 页脚 -->
  35. <footer>
  36. <h1>&lt;footer&gt;</h1>
  37. </footer>
  38. </body>
  39. </html>

3.效果图

效果图

Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:总结的很详细
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
  • 2020-10-13 14:19:17