<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>链接元素</title>
</head>
<body>
<!--href:是一个url时,在不同的页面之间跳转-->
<a href="https://baidu.com" target="_self">baidu自身</a>
<a href="https://baidu.com" target="_blank">baidu新页面</a>
<!---下载文件-->
<a href="1-文本元素.html" download="语义化文本元素">下载文件</a>
<a href="tel:13227692228">咨询电话</a>
<a href="mail to:1332227699528@189.cn">发邮件</a>
<!--锚点:实现当前页面内部之间跳转-->
<a href="#ant" id="ant1">当前页面内部跳转</a>
<a href="#ant1" id="ant">
<h1 style="margin-top: 1000px">跳转到这里了</h1>
</a>
</body>
</html>
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!