HTML标签整理

HTML标签整理

文档

<!DOCTYPE>
<html>
  <head>
    <meta />
    <base />
    <tittle></title>
    <link></link>
    <style></style>
    <script></script>
    <noscript></noscript>
  </head>
  <body>
    <!-- -->
  </body>
</html>

容器

<header></header>
<nav></nav>
<aside></aside>
<article><article>
<section></section>
<footer></footer>
<div></div>
<span></span>

文本

<hgroup>
  <h1></h1>
  <h2></h2>
  <h3><h3>
  <h4></h4>
  <h5></h5>
  <h6></h6>
</hgroup>
<p>
  <br>
</p>
<hr>
<pre></pre>
<a></a>

<em></em>
<strong></strong>
<mark></mark>

<del></del>
<ins></ins>

<sub></sub>
<sup></sup>
<small></small>

<q></q>
<blockquote></blockquote>

 文本其它

<ruby>
  <rp></rp>
  <rt></rt>
</ruby>

<bdi></bdi>
<bdo></bdo>

<dfn></dfn>
<code></code>
<samp></samp>
<kbd></kbd>
<var></var>

<abbr></abbr>
<address></address>
<cite></cite>
<time></time>
<wbr></wbr>

表单

<form>
    <fieldset>
    <legend></legend>
    <label></label>
    <input />
    <output></output>     <datalist>       <option></option>     </datalist>     <textarea></textarea>     <select>       <optgroup>         <option></option>       </optgroup>     </select>     <button></button>   </fieldset> </form>

表格

<table>
  <caption></caption>
  <colgroup>
    <col></col>
  </colgroup>
<thead>
    <tr>
      <th></th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td></td>
    </tr>
  </tbody>
  <tfoot>
    <tr>
      <td></td>
    </tr>
  </tfoot>
</table>

列表

<ul>
  <li></li>
</ul>

<ol>
  <li></li>
</ol>

<dl>
  <dt></dt>
  <dd></dd>
</dl>

 

 嵌入内容

<img />

<audio>
  <source></source>
</audio>

<video>
  <track></track>
</video>

<figure>
  <figcaption></figcaption>
</figure>

<map>
  <area></area>
</map>

<iframe></iframe>
<embed></embed>
<canvas></canvas>
<meter></meter>
<progress></progress>

<object>
  <param></param>
</object>

 

posted @ 2018-07-26 10:00  绿静風  阅读(98)  评论(0编辑  收藏  举报