-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathE.html
More file actions
40 lines (39 loc) · 909 Bytes
/
Copy pathE.html
File metadata and controls
40 lines (39 loc) · 909 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>display 속성</title>
<style>
*{
margin:0;
padding:0;
}
ul{
list-style-type:none;
}
#menu{
width:500px;
padding:10px;
margin:20px 0 0 40px;
background-color:#eeeeee;
border:solid 1px #aaaaaa;
text-align:center;
}
#menu li{
display:inline;
}
</style>
</head>
<body>
<ul id="menu">
<li>회사소개 | </li>
<li>제품소개 | </li>
<li>공지사항 | </li>
<li>업무제휴 | </li>
<li>고객센터</li>
</ul>
<br><br>
<a href="index.html">홈으로</a>
</body>
</html>