<!--1.  html5 文本 -->
<div>
  <header>
    <hgroup>
      <h1>h1</h1>
      <h2>h2</h2>
    </hgroup>
  </header>
  <article>article</article>
  <footer>footer</footer>

</div>

<!-- 2. html5 小标签 -->
<div>
  <a href="#header的位置" accesskey="a">快捷键a</a>
  <small>small</small>
  <big>big</big>
  <i>i</i>
  <blink>blink</blink>
  <cite>cite</cite>
  <sub>sub</sub>
  <sup>sup</sup>
  <span>span</span>
  <dfn>dfn</dfn>
  <samp>samp</samp>
  <pre>pre</pre>
  <kbd>kbd</kbd>
  <address>addressaddressaddress</address>
  <textarea name="" id="" cols="30" rows="10">textareatextareatextarea</textarea>
  <code>code</code>
</div>

<div>
  <article>article</article>
  <aside>aside</aside>
  <details>details</details>
  <figcaption>figcaption</figcaption>
  <figure>figure</figure>
  <footer>footer</footer>
  <header>header</header>
  <hgroup>hgroup</hgroup>
  <menu>menu</menu>
  <nav>nav</nav>
  <section>section</section>
  <summary></summary>
  <progress value="20" max="100"></progress>
</div>

<!-- 3. html5 列表 -->
<div>
  <ul contenteditable="true">
    <li>ul1</li>
    <li>ul2</li>
    <li>ul3</li>
    <li>ul4</li>
  </ul>
</div>

<div>
  <ol contenteditable="true">
    <li>ol1</li>
    <li>ol2</li>
    <li>ol3</li>
    <li>ol4</li>
  </ol>
</div>

<div>
  <dl contenteditable="true">
    <dt>dt1</dt>
    <dd>dd1</dd>
    <dt>dt2</dt>
    <dd>dd2</dd>
    <dt>dt3</dt>
    <dd>dd3</dd>
    <dt>dt4</dt>
    <dd>dd4</dd>
  </dl>
</div>

<!-- 4. html5 form -->
<div>
  <form id="" name="" action="" method="" autocompelete="on">
    <label for="email">邮箱:</label>
    <input type="email" id="" name="" placeholder="" size="" required autofocus Pattern="[A-Za-z]{0-10}" min="" max="" value=""><!-- 四到十个英文字母 -->
    <input type="number">
    <input type="seach">
    <input type="date">
    <input type="color">
    <input type="text">
    <input type="textarea">
    <input type="password">
    <input type="range">
    <input type="radio" name="one">
    <input type="radio" name="two">
    <input type="checkbox">
    <input type="file" multiple="multiple">
    <button type="submit" value="" onclick="javascript:window.location.href='aa.htm'">submit</button>
  </form>
</div>

<div>
  <form>
    <fieldset>
      <legend>health information</legend>
      height: <input type="text" />
      weight: <input type="text" />
    </fieldset>
  </form>
</div>

<div>
  <input type="text" list="CityList"></input>
  <datalist style="display:none" id="CityList">
    <option>one</option>
    <option>two</option>
    <option>three</option>
    <option>four</option>
    <option>five</option>
    <option>one01</option>
    <option>two01</option>
  </datalist>
</div>

<!-- 5. html5 select -->
<div>
  <select>
    <option>one</option>
    <option>two</option>
    <option>three</option>
    <option>four</option>
    <option>five</option>
  </select>
</div>

<!--6. html5 多媒体 below -->
<div>

  <img src="data:image1.png" alt="图片无法显示 替换文本" title="提示文本" longdesc="这是吴倩在2014.10.12弄的一张无法显示的图,这里做个长的提示文本">img</img>
  <figcaption>
    <p>this is something about img</p>
  </figcaption>

  <audio autoplay="autoplay" controls="controls">
    <source src="file.ogg"></source><!-- firefox -->
    <source src="file.mp3"></source><!-- chrome+safari -->
    <source src="file.wav"></source><!-- opera -->
    <a href="file.mp3">down this file</a>
  </audio>

<video controls preload>
  <source src="file.ogv" type="video/ogg" codecs="vorbis,theora"></source>
  <source src="file.mp4" type="video/mp4" codecs="avc1.42E01E,MP4A.40.2"></source>
  <source src="1.swf"></source>
  <a href="file.mp4">down this file</a>
</video>

<canvas id="myCanves">本游览器不支持HTML5的画布标记!</canvas>

<embed id="" src="" width="" height="" type="" wmode="Opaque" wmode="transparent">

<object data="" type=""></object>

块级元素列表

<address> 定义地址
<caption> 定义表格标题
<dd> 定义列表中定义条目
<div> 定义文档中的分区或节
<dl> 定义列表
<dt> 定义列表中的项目
<fieldset> 定义一个框架集
<form> 创建 HTML 表单
<h1> 定义最大的标题
<h2> 定义副标题
<h3> 定义标题
<h4> 定义标题
<h5> 定义标题
<h6> 定义最小的标题
<hr> 创建一条水平线
<legend> 元素为 fieldset 元素定义标题
<li> 标签定义列表项目
<noframes> 为那些不支持框架的浏览器显示文本,于 frameset 元素内部
<noscript> 定义在脚本未被执行时的替代内容
<ol> 定义有序列表
<ul> 定义无序列表
<p> 标签定义段落
<pre> 定义预格式化的文本
<table> 标签定义 HTML 表格
<tbody> 标签表格主体(正文)
<td> 表格中的标准单元格
<tfoot> 定义表格的页脚(脚注或表注)
<th> 定义表头单元格
<thead> 标签定义表格的表头
<tr> 定义表格中的行

行内元素列表

<a> 标签可定义锚
<abbr> 表示一个缩写形式
<acronym>定义只取首字母缩写
<b> 字体加粗
<bdo> 可覆盖默认的文本方向
<big> 大号字体加粗
<br> 换行
<cite> 引用进行定义
<code> 定义计算机代码文本
<dfn> 定义一个定义项目
<em> 定义为强调的内容
<i> 斜体文本效果
<img> 向网页中嵌入一幅图像
<input> 输入框
<kbd> 定义键盘文本
<label> 标签为 input 元素定义标注(标记)
<q> 定义短的引用
<samp> 定义样本文本
<select>创建单选或多选菜单
<small> 呈现小号字体效果
<span> 组合文档中的行内元素
<strong>语气更强的强调的内容
<sub> 定义下标文本
<sup> 定义上标文本
<textarea>多行的文本输入控件
<tt> 打字机或者等宽的文本效果
<var> 定义变量

<button> 按钮
<del> 定义文档中已被删除的文本
<iframe> 创建包含另外一个文档的内联框架(即行内框架)
<ins> 标签定义已经被插入文档中的文本
<map> 客户端图像映射(即热区)
<object> object对象
<script> 客户端脚本

HTML5 常用标签整理的更多相关文章

  1. html5常用标签table表格布局

    html5常用标签table表格布局 一.总结 一句话总结: 二.html5常用标签table表格布局 用表格显示信息调理清楚,使浏览者一目了然.表格在网页中还有协助布局的作用,可以把文字.图像等组织 ...

  2. html常用标签整理

    html文档结构 <!DOCTYPE html> <html lang="zh-CN"> #这个lang表示语言,zh-CN中文的意思,整个文档的内容以中文 ...

  3. html5画界面常用标签整理

    0.顶部一张banner图片横铺 .tl-header{ width: 100%; height: auto; } <section class="tl-header"> ...

  4. web.xml常用标签整理(不定期更新)

    <?xml version="1.0" encoding="UTF-8"?><!-- 标明使用的XML版本和文档编码,此项必须位于第一行,之前 ...

  5. HTML5常用标签总结

    一.常用的标签 <h1>~<h6> 表示是一个标题 <p> 段落标签 <hr/> 水平线标签 <br/> 换行标签 <sub> ...

  6. HTML5常用标签

    section 板块,用于划分页面的不同区域或者划分文章里不同的节 ↓  header 页面头部或者板块section头部 ↓  footer 页面底部或者section底部 ↓  nav 导航(包含 ...

  7. HTML5常用标签分类

    1.行级元素标签:a.span.sup.sub.em.b.big.i.strong 2.块元素标签:div.p.h1~h6.ul.ol.li.table.form.article.footer.hea ...

  8. 第六课 Html5常用标签 html5学习1

    HTML标签的认识一.标签的分类1.双标签 如<html> </html>2.单标签 如<br \> 换行标签 二.标签的关系1.嵌套关系 如<head> ...

  9. HTML5常用标签及特殊字符表

    *http://html5doctor.com/nav*http://html5doctor.com/article*http://html5doctor.com/section*http://htm ...

随机推荐

  1. 微信小程序高级基础

    微信小程序高级基础 微信小程序的注册和服务器配置: 小程序是什么呢?小程序是一种不需要下载安装就可以使用的应用,它实现了应用"触手可及"的梦想,用户扫一扫或者搜一下就可以打开应用, ...

  2. MySQL 报错ERROR 1054 (42S22): Unknown column 'plugin' in 'mysql.user'

    MySQL  我们在创建用户的时候,可能会遇到以下报错: ERROR 1054 (42S22): Unknown column 'plugin' in 'mysql.user' 说明mysq.user ...

  3. Oracle列转行函数版本不兼容解决方案

    业务场景 本博客记录一下Oracle列转行函数在Oracle11的一些不兼容问题,vm_concat在一些业务场景是必须的.不过这个函数使用要谨慎,底层实现应该也是group by等等实现的,性能并不 ...

  4. 【雷神源码解析】无基础看懂AAC码流解析,看不懂你打我

    一 前言 最近在尝试学习一些视频相关的知识,随便一搜才知道原来国内有雷神这么一个真正神级的人物存在,尤其是在这里(传送门)看到他的感言更是对他膜拜不已,雷神这种无私奉献的精神应当被我辈发扬光大.那写这 ...

  5. 吐血整理 20 道 Spring Boot 面试题,我经常拿来面试别人!

    面试了一些人,简历上都说自己熟悉 Spring Boot, 或者说正在学习 Spring Boot,一问他们时,都只停留在简单的使用阶段,很多东西都不清楚,也让我对面试者大失所望. 下面,我给大家总结 ...

  6. 【sping揭秘】24、Spring框架对JMS的集成(无环境版,以后学MQ的时候再隆重介绍)& 任务调度和线程池

    这个我也不是很了解,那么这个需要好好学习一下了 JMS有2种消息域类型 1. point to point 点对点模式 2.发布订阅模式  publish/subscribe Pub/Sub 模式 传 ...

  7. 不得不提的volatile及指令重排序(happen-before)

    微信公众号[程序员江湖] 作者黄小斜,斜杠青年,某985硕士,阿里 Java 研发工程师,于 2018 年秋招拿到 BAT 头条.网易.滴滴等 8 个大厂 offer,目前致力于分享这几年的学习经验. ...

  8. 转载:浏览器开发系列第一篇:如何获取最新chromium源码

    背景:     最近摊上一个事儿,领导非要让写一篇技术文章,思来想去,自己接触chrome浏览器时间也不短了,干脆就总结一下吧.于是乎,本文顺理成章.由于有些细节必需描述清楚,所以这次先讲如何拿到ch ...

  9. JavaScript经典片段

    typeof jQuery != "undefined" || importjQuery(); 判断jQuery对象是否存在,如果不存在就调用importjQuery()方法加载j ...

  10. spring面试问题与答案集锦

    我收集了一些spring面试的问题,这些问题可能会在下一次技术面试中遇到.对于其他spring模块,我将单独分享面试问题和答案. 如果你能将在以前面试中碰到的,且你认为这些应该是一个有spring经验 ...