study/html/链接的练习.html
2022-08-04 12:30:02 +08:00

33 lines
1008 B
HTML

<!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>
<style>
a {
text-decoration: none;
padding: 5px 10px;
border-radius: 5px;
border: 1px black solid;
color: darkred;
background-color: aliceblue;
}
</style>
</head>
<body>
<h1>链接的练习</h1>
<div id="links">
<a href="https://www.youtube.com">药罐</a>
<a href="https://imzhao.synology.me:8888">赵云</a>
<a href="https://www.zdic.net">汉典</a>
<a href="https://www.runoob.com">菜鸟教程</a>
<a href="https://github.com/archtaurus">github</a>
<a href="https://www.w3school.com.cn">w3school</a>
<a href="https://www.shuxuele.com">数学乐</a>
<a href="https://zh.m.wikipedia.org/">维基百科</a>
</div>
</body>
</html>