html5,css3,js
Opened this issue · 0 comments
winbin commented
HTML
html5 新特性
- 新的文档类型
<!DOCTYPE html>
- 语义化标签
header
页面或内容的头部
<header>
<h1>hello world!</h1>
</header>
footer
页面或内容的底部
<footer>
<small>goode bye!</small>
</footer>
hgroup
页面的标题组合
<hgroup>
<h1>Hello World!</h1>
<h2>Come on Baby!</h2>
<h3>Good Bye~</h3>
</hgroup>
article
页面的文章内容
<article>
<h1>pen</h1>
<p>I have a pen ~</p>
</articel>
section
页面的元素的节
<section>
<h1>apple</h1>
<p>I have an apple~</p>
</section>
aside
页面主内容以外的内容
<section>
...
</section>
<aside>
<p>biubiubiu~</p>
</aside>
nav
页面导航链接
<nav>
<a href="#">HOME</a>
<a href="#">LIST</a>
</nav>
...