-
Notifications
You must be signed in to change notification settings - Fork 0
/
simplepro.html
45 lines (42 loc) · 956 Bytes
/
simplepro.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
<!DOCTYPE html>
<html>
<head>
<meta charset = "utf-8">
<title> this is about css </title>
<style>
ul{
background-color: red;
list-style-type:none;
margin:0;
padding:0;
overflow: hidden;
}
li {
float:left;
}
li a{
display:inline-block;
color:white;
text-align:center;
padding:14px 16px;
text-decoration: none;
}
li a:hover{
background-color: blue;
}
.zedas{
background-color: green;
}
</style>
</head>
<body>
<ul>
<li><a class = "zedas" href = "block.html">Home</a></li>
<li><a href = "float.html">C++</a></li>
<li><a href = "clear.html">JAVA</a></li>
<li><a href = "section.html">Html</a></li>
<li><a href = "orderlist.html">SQL</a></li>
<li><a href = "abouts.html">python</a></li>
</ul>
</body>
</html>