1.a标签的用法
<body>
<!--跳转地址
target属性:
默认值_self :直接在当前页面打开
_blank:重新打开一个页面
-->
<a href="https://php.cn" target="_self">php中文网</a>
<a href="https://php.cn" target="_blank">php中文网</a>
<!-- 下载文件 -->
<a href="http://127.0.0.1:5500/全球看点V3.1.vmp.zip">下载</a>
<!--发送邮件-->
<a href="mailto:youemail@mail.com">告诉我们</a>
<!--手机端拨打电话 -->
<a href="tel:12312312312">联系我们</a>
<!-- 手机端发送信息 -->
<a href="sms:123123123">发送短信</a>
<!-- 锚点 -->
<a href="#into">锚点</a>
<p id="into">锚点</pre>
</body>
2.列表(三种):有序列表、无序列表、自定义列表
<body>
<!-- 有序列表 -->
<h2>有序列表:电视剧</h2>
<ol type="A">
<li><a href="">大陆</a></li>
<li><a href="">韩剧</a></li>
<li><a href="">美剧</a></li>
<li><a href="">泰剧</a></li>
</ol>
<!-- 无序列表 -->
<h2>编程</h2>
<ul type="square">
<li><a href="">php</a></li>
<li><a href="">java</a></li>
<li><a href="">html</a></li>
<li><a href="">javascript</a></li>
</ul>
<!-- 自定义列表 -->
<h2>联系我们</h2>
<dl>
<dt>邮件</dt>
<dd><a href="mailto:2313131@qq.com">313131@qq.com</a></dd>
<dt>电话</dt>
<dd><a href="tel:12313131">12313131</a></dd>
</dl>
</body>
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!