点击查看代码
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>超级链接</title>
</head>
<body>
<a class="red" href="https://www.deepseek.com/">空连接<br></a>
<a class="orange" href="#">内部链接<br></a>
<a class="yellow" href="#">外部链接<br></a>
<a class="green" href="#">锚记<br></a>
<a class="blue" href="#">电子邮件<br></a>
<a class="deepskyblue" href="#">点我下载<br></a>
<a class="blueviolet" href="#">JS交互<br></a>
<style type="text/css">
a.red{
display: inline;
color: red;
font-size: 48px;
text-decoration:underline;
}
a.orange{
display: inline;
color: orange;
font-size: 48px;
text-decoration:underline;
}
a.yellow{
display: inline;
color: yellow;
font-size: 48px;
text-decoration:underline;
}
a.green{
display: inline;
color: green;
font-size: 48px;
text-decoration:underline;
}
a.blue{
display: inline;
color: blue;
font-size: 48px;
text-decoration:underline;
}
a.deepskyblue{
display: inline;
color: deepskyblue;
font-size: 48px;
text-decoration:underline;
}
a.blueviolet{
display: inline;
color: blueviolet;
font-size: 48px;
text-decoration:underline;
}
a:hover{
text-decoration:none;
background-color:whitesmoke;
color: black;
}
</style>
<div style="height: 400px; overflow-y: scroll;">
</div>
</body>
</html>