-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake_bar.html
48 lines (48 loc) · 1.07 KB
/
make_bar.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>bar</title>
<style>
* {
padding: 0;
margin: 0;
text-decoration: none;
list-style: none;
}
nav {
background-color: #34495e;
width: 100%;
height: 80px;
}
nav li {
display: inline-block;
margin: 0 8px;
line-height: 80px;
}
nav a {
color: white;
font-size: 20px;
text-transform: uppercase;
padding: 10px;
}
a.active,
a:hover {
border: 1px solid white;
}
</style>
</head>
<body>
<nav>
<!--의미를 가지는 tag-->
<ul>
<li><a href="#" class="active">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Feedback</a></li>
</ul>
</nav>
</body>
</html>