html4与html5对比
h4写法 传统的写法.png
h5写法 h5新的写法.png
标签
-header-------页面的头部
<header></header>
-main-------页面主体内容
<main></main>
-section-----划分每一块(section里面可以放多个article)
<section></section>
-article------划分文章每章节(article里面可以放多个aside)
<article></article>
总结:
<article> <h3>三级标题</h3> <p>我是李白,一人饮酒醉<p> <aside>向右看一眼<aside> </article>
-nav-----导航区域
<nav></nav>
-footer-------底部
<footer></footer>
-figure-----里面可以放入图片和文字
`<figure></figure>
-hgroup-----标题与子标题的组合
<hgroup></hgroup>
网友评论