有序列表
<ol>
<li>ol有序列表</li>
<li></li>
<li></li>
</ol>
<ul>
<li>有序列表</li>
</ul>
<dl>
<dt>被定义的术语</dt>
<dd>用来包含定义</dd>
<dd> </dd>
</dl>
链接
- 指向其他网站的链接
<a href="#绝对URL"></a>
- 指向同一网站中其他页面的链接
<a href="#">相对URL</a>
- email链接
<a href="mailto:[email protected]">邮箱链接</a>
- 在新窗口打开链接
<a href="#" target="_blank">新窗口</a>
- 连接到当前页面的某个位置
<h1 id="top">顶部</h1>
<a href="#top">链接到顶部</a>
- 链接到其他页面的某个特定位置
<a href="http:/www.baidu.com/#top">在链接后加#ID</a>
时间: 2024-10-29 19:06:45