-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathself.html
More file actions
70 lines (70 loc) · 1.75 KB
/
Copy pathself.html
File metadata and controls
70 lines (70 loc) · 1.75 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>신하빈</title>
<style>
nav {
width: 100%;
background-color: #ff7b00;
padding: 15px 50px;
}
.logo {
color: white;
font-weight: bold;
font-size: 1.2rem;
}
nav > ul {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
list-style: none;
}
li > a {
text-decoration: none;
color: white;
font-size: 0.9rem;
font-weight: 600;
}
a:hover {
color: #ffd8a8;
}
</style>
</head>
<body>
<nav>
<div class="logo">HABIN</div>
<ul>
<li><a href="#1">자기소개</a></li>
<li><a href="#2">나의 강점</a></li>
<li><a href="#3">이런 팀원 구해요</a></li>
<li><a href="#4">목표</a></li>
</ul>
</nav>
<ul>
<div id = "1">
<li>
<p>안녕하세요 저는 신하빈 입니다. 저는 신중하고 군</p>
</li>
</div>
<div id = "2">
<li>
<p>안녕하세요 저는 신하빈 입니다.</p>
</li>
</div>
<div id = "3">
<li>
<p>안녕하세요 저는 신하빈 입니다.</p>
</li>
</div>
<div id = "4">
<li>
<p>안녕하세요 저는 신하빈 입니다.</p>
</li>
</div>
</ul>
</body>
</html>