-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmoi.html
More file actions
50 lines (49 loc) · 1.06 KB
/
Copy pathmoi.html
File metadata and controls
50 lines (49 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=>, initial-scale=1.0">
<title>Document</title>
<style>
ul.menu li{
display: inline-block;
background: #ff0000;
height: 20px;
vertical-align: middle;
width: 100px;
text-align: center;
padding: 20px;
}
ul.menu{
display: block;
background: #aaa;
}
ul.noot ul:hover li{
display: none;
padding: 0;
}
ul.noot ul:hover{
background-color: #ff0000;
}
a{
text-decoration: none;
color: black;
font-size: 18px;
}
</style>
</head>
<body>
<img src="HTG-1005.jpg" style="height: 500px; width: 1200px">
<ul class="menu">
<li><a href="kyyeu.html">Ảnh Kỷ Yếu</a></li>
<li><a href="ae.html">Nhóm FA</a></li>
<li><a>Cửa Hàng</a>
<ul class="noot">
<li><a href="thuy.html">Nguyễn Thị Bích Thủy</a></li>
<li><a href="văn.html">Nguyễn Anh Văn</a></li>
<li><a href="linhrom.html">Đinh Thị Mỹ Linh</a></li>
</ul>
</li>
</ul>
</body>
</html>