`
songzhan
  • 浏览: 247937 次
  • 性别: Icon_minigender_1
社区版块
存档分类
最新评论

html5 标签用法

阅读更多

!----------------------------html5标签实验室--------------------->

<!--
audio标签用法(给一个音频文件的地址,可以显示指定是否可手动控制)
-->

<audio src="horse.ogg" controls="controls">
Your browser does not support the audio element.
</audio>

<!------------------------------end---------------------------------->

<!--
video标签用法(用法与audio类似,给一个视频文件的地址,可以显示指定是否可手动控制)
-->

<video src="movie.ogg" controls="controls">
your browser does not support the video tag
</video>

<!------------------------------end---------------------------------->

<!--
abbr标签用法(鼠标停留在"WHO"上面时,会提示title属性中定义的文字)
-->

The <abbr title="World Health Organization">WHO</abbr> was founded in 1948.

<!------------------------------end---------------------------------->

<!--
address用法(在网页中定义联系方式的时候会用到)
-->

<address>
Written by W3Schools.com<br />
<a href="mailto:us@example.org">Email us</a><br />
Address: Box 564, Disneyland<br />
Phone: +12 34 56 78
</address>

<!------------------------------end---------------------------------->

<!--
    HTML5: <article></article>
    HTML4: <div class="article"></div>

这个标签的唯一目的是废除需要定义的一个类。
-->

<article>
<a href="http://blog.netscape.com/2007/12/28/
end-of-support-for-netscape-web-browsers">Netscape is dead</a>
<p>
AOL has a long history on the internet, being one of
the first companies to really get people online.....</p>
<p>something news about AOL,story of AOL is very long.....</p>
</article> 

<!------------------------------end---------------------------------->

<!--
    HTML5: <aside></aside>
    HTML4: <div class="aside"></div>

这个标签的唯一目的是废除需要定义的一个类。
-->

<p>My family and I visited The Epcot center this summer.</p>
<aside>
<h4>Epcot Center</h4>
The Epcot Center is a theme park in Disney World, Florida.
</aside> 

<!------------------------------end---------------------------------->

<!--
base 用法(最好把base放在head标签内,方便管理代码,为了演示用法,放在了一起,单击链接,会跳转到 http://www.w3schools.com/html5/default.asp)
-->

<base href="http://www.w3schools.com/html5/" target="_blank" />

<a href="default.asp">W3Schools' HTML5 Tutorial</a>

<!------------------------------end---------------------------------->

<!--
rlt 用法(dir默认的文字方向是从左到右,为了突出其用法,本例为从右至左)
-->

<bdo dir="rtl">
Here is some text written from right-to-left.
</bdo>

<!------------------------------end---------------------------------->

<!--
blockquote 用法(定义简讯、短消息)
-->

<p>Here is a quote from WWF's website:
<blockquote cite="http://www.wwf.org">
WWF's ultimate goal is to build a future where people live in harmony with nature.
</blockquote>
We hope that they succeed.
</p>

<!------------------------------end---------------------------------->

<!--
caption 用法(对table进行说明)
-->

<table>
  <caption>Monthly savings</caption>
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
  <tr>
    <td>February</td>
    <td>$50</td>
  </tr>
</table>

<!------------------------------end---------------------------------->

<!--
<em> <strong> <dfn> <code> <samp> <kbd> <var> <cite> 标签用法
-->

<!--强调-->
<em>Emphasized text</em><br />
<!--加粗-->
<strong>Strong text</strong><br />
<!--定义-->
<dfn>Definition term</dfn><br />
<!--代码-->
<code>Computer code text</code><br />
<!--示例代码-->
<samp>Sample computer code text</samp><br />
<!--键盘文字-->
<kbd>Keyboard text</kbd><br />
<!--变量-->
<var>Variable</var><br />
<!--引用-->
<cite>Citation</cite> 

<!------------------------------end---------------------------------->

<!--
colgroup 用法(以列为单位控制样式)
-->

<table>
  <colgroup span="2" style="background:red"></colgroup>
  <tr>
    <th>ISBN</th>
    <th>Title</th>
    <th>Price</th>
  </tr>
  <tr>
    <td>3476896</td>
    <td>My first HTML</td>
    <td>$53</td>
  </tr>
</table>

<!------------------------------end---------------------------------->

<!--
datalist 用法(自动补全文本框)
-->

<input list="cars" />
<datalist id="cars">
    <option value="BMW">
    <option value="Ford">
    <option value="Volvo">
</datalist>

<!------------------------------end---------------------------------->

<!--
dl,dt,dd 用法
-->


<dl>
<dt>Coffee</dt>
<dd>Black hot drink</dd>
<dt>another one</dt>
<dd>wwwww</dd>

<dt>Milk</dt>
<dd>White cold drink</dd>
</dl>

<!------------------------------end---------------------------------->

<!--
del(同s),ins 用法
-->

<p>My favorite color is <del>blue</del> <ins>red</ins>!</p>

<!------------------------------end---------------------------------->

<!--
details 用法,当有标题+段落说明的场景时可以使用
-->

<details>
<summary>Copyright 1999-2011.</summary>
<p>All pages and graphics on this web site are the property of the company Refsnes Data.</p>
</details>

<!------------------------------end---------------------------------->

<!--
embed/object 用法,嵌入flash
-->

<embed src="helloworld.swf" />
<object data="helloworld.swf"></object>

<!------------------------------end---------------------------------->


<!--
fieldset,legend 用法,填写用户信息时
-->

  <fieldset>
    <legend>Personalia:</legend>
    Name: <input type="text" /><br />
    Email: <input type="text" /><br />
    Date of birth: <input type="text" />
  </fieldset>

<!------------------------------end---------------------------------->

<!--
footer 用法,放在页面底部说明页面版权
-->

<footer>This document was written in 2009</footer>

<!------------------------------end---------------------------------->

<!--
mark 用法,特别标记单词
-->

<p>Do not forget to buy <mark>milk</mark> today.</p>

<!------------------------------end---------------------------------->

<!--
nav 用法,包含一些链接
-->

<nav>
<a href="default.asp">Home</a>
<a href="tag_meter.asp">Previous</a>
<a href="tag_noscript.asp">Next</a>
</nav>

<!------------------------------end---------------------------------->



<!--
time 用法,等同span,只是专门用来定义日期和时间
-->

<time datetime="10:00">10:00</time>

<!------------------------------end---------------------------------->

<!--
    HTML5: <figure></figure>
    HTML4: <dl class="figure"></dl>

这个标签的唯一目的是废除需要定义的一个类。
-->

<figure>
  <p>A view of the pulpit rock in Norway</p>
  <img src="img_pulpit.jpg" width="304" height="228" />
</figure>

<!------------------------------end---------------------------------->

<!--
     HTML5: <menu></menu>
     HTML4: <ul class="menu"></ul>

这个标签的唯一目的是废除需要定义的一个类。
-->

<menu>
<li><input type="checkbox" />Red</li>
<li><input type="checkbox" />blue</li>
</menu>

<!------------------------------end---------------------------------->

分享到:
评论

相关推荐

    html标签大全标签用法详解

    本篇文章将全面解析HTML标签的用法,为网站开发者提供详细的指导。 首先,我们来了解一下HTML的基本结构。一个标准的HTML文档通常由三部分组成:文档声明、头部(head)和主体(body)。文档声明例如`&lt;!DOCTYPE ...

    HTML 5和 HTML 4的区别点及标签用法

    ### HTML 5与HTML 4的区别点及标签用法详解 HTML 5作为新一代的超文本标记语言标准,相比其前代HTML 4,在语法、功能以及对多媒体的支持上进行了大幅改进,旨在提升网页的交互性和用户体验。以下将详细介绍HTML 5与...

    HTML5 embed 标签使用方法介绍

    需要注意的是,由于`&lt;embed&gt;`标签在HTML5中的属性定义和使用方法与HTML4有所不同,因此在跨版本兼容性方面可能会存在问题。例如,一些早期的浏览器可能不支持在HTML5中为`&lt;embed&gt;`标签定义的新属性,这可能会导致在...

    HTML5标签(chm版)

    此“HTML5标签(chm版)”压缩包提供了关于HTML5标签的详细信息,包括它们的用法和与HTML4的区别,这对于开发者来说是一个宝贵的资源。 HTML5的新标签主要包括结构性元素、表单控制元素以及多媒体支持元素等。结构性...

    html g标签 的作用及使用方法.zip

    然而,由于SVG是内嵌在HTML5中的,所以`&lt;g&gt;`标签仍然可以在HTML文档中使用,只要包含在`&lt;svg&gt;`元素内部,它就会遵循SVG的规则。 在`svg当中g元素的使用g.svg_baohanqing_新浪博客.url`这篇博客文章中,可能会进一步...

    html5标签属性及使用方法教程

    接下来,我们将深入探讨HTML5标签及属性的使用方法。 首先,了解&lt;!doctype&gt;元素的重要性。它用于声明文档类型,确保浏览器能够以标准模式渲染页面,而不是兼容模式,这对于新功能的正常工作是必需的。在HTML5中,&lt;!...

    jsp中htmlselect标签的用法

    以下是对`html:select`标签的详细解释和使用方法: ### 基本结构 `html:select`标签的基本结构如下: ```jsp &lt;html:select property="beanProperty"&gt; ...

    HTML5视频播放video标签使用方法.docx

    在本文中,我们将深入探讨`&lt;video&gt;`标签的使用方法,以及如何通过JavaScript进行交互控制。 ### 1. `&lt;video&gt;`标签的基本结构 创建一个基本的`&lt;video&gt;`元素,你需要指定`src`属性来提供视频文件的URL或本地路径。...

    实用html5标签代码参照表

    HTML5是超文本标记语言(HyperText Markup Language)的第五个主要...这份"实用HTML5标签代码参照表"是开发者必备的参考资料,无论是初学者还是经验丰富的开发者,都能从中受益,快速查找和理解各种HTML5元素及其用法。

    html5标签集合

    html入门学习,html5中所有涉及的标签作用及使用方法

    html5video标签用法

    下面将详细阐述其基本使用方法、属性、事件和样式控制。 1. **基本结构**: `&lt;video&gt;`标签的基本结构如下: ```html &lt;video src="your_video.mp4" width="640" height="360" controls&gt;&lt;/video&gt; ``` 其中,`src...

    HTML5常用基础标签.docx

    * `name` 属性:使用方法同 `http-equiv`,将我们的信息写给搜索引擎看。 三、Body 部分 Body 部分主要包含网页的文本、图片等信息。常用的标签有: * 块级标签: + `&lt;h1&gt;` 到 `&lt;h6&gt;`:标题标签,自动加粗,h1 ...

    html标签及用法

    学习HTML标签及用法,不仅要理解每个标签的功能,还要学会如何组合使用,以创建出结构清晰、内容丰富的网页。实践是检验学习成果的最佳方式,建议动手编写HTML代码,不断尝试和调试,从而真正掌握这一基础技能。

    HTML5标签使用方法详解

    HTML5是一种先进的网络标准,旨在替代旧版的HTML标准,如HTML 4.01、XHTML 1.0和DOM Level 2 HTML。...通过学习和掌握这些新标签的使用方法,开发者能够创建出更加符合现代互联网标准的网站和应用程序。

    HTML标签属性大全

    在本篇文章中,我们将对HTML标签进行分类,逐个介绍每个标签的用途和参数设置,并提供实例代码和示例图片,以便读者更好地理解和掌握HTML标签的使用方法。 一、基本结构标签 基本结构标签是指在HTML文档中用于定义...

    jsp标签用法.rar

    **JSTL 标签的使用方法**: 1. 引入JSTL库:在`WEB-INF/lib` 目录下添加JSTL的jar文件,如 `jstl.jar` 和 `standard.jar`。 2. 在JSP页面中导入JSTL核心库: ```jsp ``` 这里,`prefix="c"` 是自定义的前缀,`...

    html标签和属性总结

    HTML标签是构建Web页面的基础,了解HTML标签的属性和使用方法是非常重要的。本文将详细介绍HTML标签的种类、属性和使用方法,适合初学者学习和参考。 一、 HTML标签的种类 HTML标签可以分为两大类:结构标签和格式...

Global site tag (gtag.js) - Google Analytics