12345678910111213141516171819202122 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <!-- <header> 定义 section 或 page 的页眉 (页面顶部,文档的头部区域)
- <nav> 定义导航链接
- <article> 定义文章
- <section> 定义 section(文档中的一块文档中的区段)
- <aside> 定义页面内容之外的内容(侧边栏)
- <footer> 定义 section 或 page 的页脚(页面底部) -->
- <header></header>
- <nav></nav>
- <article></article>
- <section></section>
- <aside></aside>
- <footer></footer>
- </body>
- </html>
|