html5教程:基本页面布局

来源:互联网 发布:脉冲信号测试软件 编辑:程序博客网 时间:2024/05/16 11:49

转  http://www.rainleaves.com/html/1701.html

html5基本布局
html5基本布局

html5结构代码:

<!DOCTYPE html><htmlang = "en"><head><meta charset = "utf-8"><title>HTML5 Demo</title><body><header>  <hgroup>    <h1>雨打浮萍</h1>    <h2>专业于web程序开发</h2>  </hgroup></header><nav>  <ul>    <li></li>    <li></li>  </ul></nav><section>  <article></article>  <aside></aside></section><section></section><footer></footer></body></head>

html5详细页布局

html5结构代码:

<!DOCTYPE html><htmlang = "en"><head><meta charset = "utf-8"><title>HTML5 Demo</title><body><header>  <hgroup>    <h1>雨打浮萍</h1>    <h2>专业于web程序开发</h2>  </hgroup></header><nav>  <ul>    <li></li>    <li></li>  </ul></nav><article>  <hgroup></hgroup>  <section></section></article><aside></aside><footer></footer></body></head>

转载请注明本文链接:http://www.rainleaves.com/html/1701.html

原创粉丝点击