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