Files
Course/Web/test2/attri_practice.html
2025-11-07 18:39:29 +08:00

53 lines
965 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>
p {
color: #cc0000;
font-size: 32px;
}
#tit {
background-color: gray;
}
.tit {
text-align: center;
font-style: italic;
font-family: "宋体";
}
a:link {
text-decoration: none;
}
a:hover {
color: red;
font-size: 24px;
}
a:active {
color: rgb(0, 204, 0);
}
a:after {
color: #9900ff;
}
[title] {
font-weight: bold;
}
</style>
</head>
<body>
<p id="tit" class="tit" title="tit">一个段落</p>
<a href="https://www.runoob.com/" target="_blank">点击跳转到菜鸟教程</a>
</body>
</html>