-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlink1.html
69 lines (61 loc) · 1.31 KB
/
link1.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>link</title>
<style>
body{
background-image: url(http://pics.sc.chinaz.com/files/pic/pic9/201603/apic19551.jpg);
}
.link.s{
width:-9;
height:60;
border:3px dashed blue;
position:relative ;
}
.link.c.{
width:20;
height:60;
border:3px dashed blue;
position:relative ;
}
.link.y{
width:20;
height:60;
border:3px dashed blue;
position:relative ;
}
}
a{
font-size:2em;
}
a:link{
color:blank;
background-color: #ff0;
text-decoration: none;
}
a:visited{
color:green;
text-decoration: underline;
}
a:hover{
color:yellow;
text-decoration: none;
}
a:active{
color:red;
text-decoration: underline;
}
</style>
</head>
<body>
<ul class="link">
<li class="s"></li>
<a href="http://www.baidu.com">百度百度</a>
<li class="c"></li>
<a href="http://www.bilibili.com">bilibili</a>
<li class="y"></li>
<a href="http://tieba.baidu.com/f?kw=%E4%B9%90%E4%BA%8B">乐事贴吧</a>
</ul>
</body>
</html>