html5的基础标记

来源:互联网 发布:算法帝国 pdf 编辑:程序博客网 时间:2024/06/05 19:53


<head>
<title></title>
<meta charset=utf-8>
</head>
<body>


<address>
<blockquote>
</blockquote>大缩进
<q>
</q>小引用
</address>


<pre>预格式化
</pre>




<hgroup>
<h1>   </h1>
---<h6> </h6>
</hgroup>


<hr width=50%宽 align=left偏左 size=1粗>水平线
<abbr title="aa">FF</abbr>注释

<bdo dir=rtl> <bdi></bdi>方向倒回来 </bdo>方向颠倒

&lt;&gt; 小于号与大于号
&amp; 与
&nbsp; 空格
&uuml; yu
        &Uuml; yu
</body>




<p title="aa">段落
</p>
<br>分行
<wbr> </wbr> 英文分行


<b></b>加粗
<i></i>斜体
<tt></tt>打字机字体:等宽西文字体
<small></small>小字
<del></del> <ins></ins>编辑
<s></s>过时的
<sup></sup>上标 
<sub></sub>下标
<mark></mark>高亮


<em></em>强调
<strong></strong>着重
<dfn></dfn>定义
<code></code>代码
<samp></samp>例子代码
<kbd></kbd>用户输入
<var></var>变量
<cite></cite>引用


表格:
<ul start=-1>
<li></li>表格项目
</ul>
<ol>
</ol>
<dl>字典
<dt></dt>词条
<dd></dd>解释
</dl>


图片:
<img src="http://www.baidu.com" width=50% height=200 alt="mama"装载时所显示的文字>
<iframe src=""></iframe>


超链接:
<a href="http://www.baidu.com" target=_blank新窗口>百度</a>
可以段落的属性 id="here"
href=#here
图片中建立映射 usemap="#map"
<map>
<area>
shape="rect" coods="0,0,50,50" href=   alt=
</area>
<area>
shape="circle" coods="75,75,25" href=   alt=
</area>
</map>
表格:
<table border="1"线>
<caption></caption>表头
<thead>
<tr>
<th></th>单元格的内容

</tr>
</thead>
<tr>一行
<td colspan="3" 跨度></td>格子
 
</tr>
<tfoot>
</tfoot>
</table>



0 0