<article\\>
<p\\>
The Disney movie <em\\>The Little Mermaid</em\\> was
first released to theatres in 1989.
</p\\>
<aside\\>
The movie earned $87 million during its initial release.
</aside\\>
<p\\>
More info about the movie...
</p\\>
</article\\>
HTML5 <footer>
HTML Footer 元素 (<footer>)用来表示整个文档或与其相应的某个区域内容的页脚。一个footer通常包含的内容有:作者信息,版权信息或相关连接。
<figure\\>
<figcaption\\><cite\\>Edsger Dijkstra :-</cite\\></figcaption\\>
<p\\>"If debugging is the process of removing software bugs, <br /> then programming must be the process of putting them in"</p\\>
</figure\\>
HTML5 <header>
HTML <header> 元素用来表示一些前言性质或导航类的内容。它可以包含一些标题性质元素,也可以放置一些比如logo,搜索框,或其它的<header>元素等。
使用说明:
<header>元素并不是一个可以形成段落内容的元素,所以,不需要在内容目录里体现出来。
用法例子
<header\\>
a logo
</header\\>
HTML5 <nav>
HTML (<nav>)元素用来表示一个含有多个超链接的区域,这个区域的连接可以连接到其他页面,也可以连接到本页面内部其他部分。
<video src\\="<http://www.webhek.com/~j/theora\\_testsuite/320x240.ogg>" controls autoplay loop\\>
Your browser does not support the <code\\>video</code\\> element.
</video\\>
上面这个例子显示了如何播放一个视频文件,并露出视频播放控制按钮。
下面这个例子是在HTML网页里嵌入音频 audio 的方法:
<audio controls autoplay loop src\\="/test/audio.ogg"\\>
<p\\>Your browser does not support the <code\\>audio</code\\> element.</p\\>
</audio\\>
这里的 src 属性里可以填入一个音频/视频的URL,也可以是一个本地的文件。
<audio src\\="audio.ogg" controls autoplay loop\\>
<p\\>Your browser does not support the <code\\>audio</code\\> element </p\\>
</audio\\>
<video controls\\>
<source src\\="foo.ogg" type\\="video/ogg"\\>
<source src\\="foo.mp4" type\\="video/mp4"\\>
Your browser does not support the <code\\>video</code\\> element.
</video\\>
<video controls\\>
<source src\\="foo.ogg" type\\="video/ogg; codecs\\=dirac, speex"\\>
Your browser does not support the <code\\>video</code\\> element.
</video\\>
<dl\\>
<dt\\>Firefox</dt\\>
<dd\\>A free, open source, cross-platform, graphical web browser
developed by the Mozilla Corporation and hundreds of volunteers.</dd\\>
<!-- other terms and definitions -->
</dl\\>
例二:多个术语对应一条解释或定义
<dl\\>
<dt\\>Firefox</dt\\>
<dt\\>Mozilla Firefox</dt\\>
<dt\\>Fx</dt\\>
<dd\\>A free, open source, cross-platform, graphical web browser
developed by the Mozilla Corporation and hundreds of volunteers.</dd\\>
<!-- other terms and definitions -->
</dl\\>
例二:一个术语对应多条解释或定义
<dl\\>
<dt\\>Firefox</dt\\>
<dd\\>A free, open source, cross-platform, graphical web browser
developed by the Mozilla Corporation and hundreds of volunteers.</dd\\>
<dd\\>The Red Panda also known as the Lesser Panda, Wah, Bear Cat or Firefox,
is a mostly herbivorous mammal, slightly larger than a domestic cat
(60 cm long).</dd\\>
<!-- other terms and definitions -->
</dl\\>