-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnew.html
More file actions
92 lines (86 loc) · 1.8 KB
/
Copy pathnew.html
File metadata and controls
92 lines (86 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!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>Document</title>
<style>
p,
div,
span,
h1{
color:red
}
a:hover {
color: red;
}
div {
font-weight: 700;
line-height: 9;
width: 400px;
height: 400px;
background-color: pink;
background-image: url(as.PNG);
background-repeat: no-repeat;
background-position: center;
}
span {
width: 100px;
height: 100px;
background-color: pink;
display: inline-block;
}
a {
text-decoration: none;
width: 100px;
height: 50px;
background-color: red;
display: inline-block;
color: #fff;
text-align: center;
line-height: 50px;
}
a:hover {
background-color: orange;
}
</style>
</head>
<body>
<a href="#">导航1</a>
<a href="#">导航2</a>
<a href="#">导航3</a>
<a href="#">导航4</a>
<p>p</p>
<div>div</div>
<span>span</span>
<span>span</span>
<h1>h1</h1>
<h2>h2</h2>
<div class="red"></div>
<div id="one"></div>
<p class="red" id="one"></p>
<ul>
<li></li>
</ul>
<ul>
<li></li>
<li></li>
<li></li>
</ul>
<div></div>
<p></p>
<div>
<p></p>
</div>
<ul>
<li>111</li>
</ul>
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
</ul>
<a href="#">a标签</a>
</body>
</html>