-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path8_horizontal_menu.html
More file actions
49 lines (45 loc) · 1018 Bytes
/
8_horizontal_menu.html
File metadata and controls
49 lines (45 loc) · 1018 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Q.8 Horizontal Menu</title>
<style>
ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
}
li {
margin-right: 15px;
}
a {
text-decoration: none;
border: 2px solid #333;
padding: 10px;
color: #333;
background-color: #eee;
font-size: 16px;
}
a:hover {
background-color: #ccc;
color: #fff;
font-size: 18px;
}
a:active,
a:focus {
outline: none;
}
</style>
</head>
<body>
<ul>
<li><a href="option1.html">Option 1</a></li>
<li><a href="option2.html">Option 2</a></li>
<li><a href="option3.html">Option 3</a></li>
<li><a href="option4.html">Option 4</a></li>
<li><a href="option5.html">Option 5</a></li>
</ul>
</body>
</html>