拾柒6年前
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>HTML中的常用标签及属性(超链接)</title>
<link rel="shortcut icon" href="images/icon.jpg">
<style type="text/css">
a{text-decoration: none; color: black;}
a:hover{text-decoration: underline; color: red;}
div{height: 1000px; width: 400px; background: pink;}
</style>
</head>
<body>
<a href="#">超链接</a><br>
<a href="https://www.baidu.com">百度</a><br>
<a href="http://www.php.cn">php中文网</a>
<a href="#"><img src="images/p1.jpg" style="height: 200px; width: 200px;"></a><br>
<a name="top">页面顶部</a>
<a href="#bottom">回到底部</a>
<div></div>
<a name="bottom">页面底部</a>
<a href="#top">回到顶部</a>
</body>
</html>
0