-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExample_21.html
More file actions
35 lines (34 loc) · 792 Bytes
/
Copy pathExample_21.html
File metadata and controls
35 lines (34 loc) · 792 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
<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
ul{
list-style: none;
}
ul li a{
text-decoration: none;
color: black;
float: left;
margin: 15px;
padding: 10px;
font-size: 20px;
transition: 0.5s;
}
ul li a:hover{
border-bottom: 1px solid red;
}
</style>
</head>
<body>
<ul class="navi">
<li><a href="https://www.w3schools.com/html/html_css.asp">HTML/CSS</a></li>
<li><a href="#">jQuery</a></li>
<li><a href="#">WordPress</a></li>
<li><a href="#">Photoshop</a></li>
<li><a href="#">Illustrator</a></li>
<li><a href="#">Enrollment</a></li>
</ul>
</body>
</html>