-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (52 loc) · 1.22 KB
/
index.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
49
50
51
52
53
54
55
56
57
58
59
<html lang="en"></html>
<head>
<meta charset="utf-8">
<meta name="description" content="Henry World">
<title>"Henry World"</title>
<link href="style.css" rel="stylesheet" type="text/css"/>
<style>
.nav {
height: 50px;
border-bottom: 3px solid lightsalmon;
display: flex;
align-items: center;
}
.nav-items {
display: flex;
margin-left: auto;
margin-right: 10px;
}
.nav-item {
margin-left: 10px;
}
.title {
text-align: center;
font-size: 50px;
font-weight: bold;
}
.subtitle {
text-align: center;
font-size: 20px;
font-weight: bold;
}
</style>
</head>
<body>
<div class="nav">
nav test
<div class="nav-items">
<div class="nav-item">SNS</div>
<div class="nax-item">Activity</div>
<div class="nax-item">Projects</div>
</div>
</div>
<div class="main">
<div class="title">
Test
</div>
<div class="subtitle">
Test subtitle
</div>
</div>
<script src="script.js"></script>
</body>