2_语义化标签.html 639 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. <style>
  9. header{
  10. width: 200px;
  11. height: 200px;
  12. background: orange;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <!-- 语义化标签 就是给标签赋予一定的含义 -->
  18. <header>1111</header> 定义头部
  19. <nav></nav> 定义导航栏
  20. <section></section> 定义某一块区域
  21. <article></article> 定义文章
  22. <aside></aside> 定义侧边栏
  23. <footer></footer> 定义页脚
  24. </body>
  25. </html>