2025-01-02 10:46:09 +08:00

40 lines
891 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.father {
text-align: center;
color: white;
background-color: blue;
height: 400px;
width: 200px;
}
.son {
display: block;
line-height: 80px;
height: 80px;
color: white;
text-decoration: none;
}
.son:hover {
background-color: skyblue;
}
</style>
</head>
<body>
<div class="father">
<a class="son" href="#">HTML</a>
<a class="son" href="#">CSS</a>
<a class="son" href="#">JavaScript</a>
<a class="son" href="#">Vue</a>
<a class="son" href="#">React</a>
</div>
</body>
</html>