feat(*): 代码仓库初始化
This commit is contained in:
53
Web/test2/attri_practice.html
Normal file
53
Web/test2/attri_practice.html
Normal file
@@ -0,0 +1,53 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user