-
Notifications
You must be signed in to change notification settings - Fork 12
/
4.html
102 lines (102 loc) · 2.21 KB
/
4.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
body {
margin: 0;
}
header {
background-color: aquamarine;
text-align: center;
margin: 0;
height: 50px;
justify-content: center;
align-content: center;
}
ul {
background-color: antiquewhite;
display: flex;
text-align: end;
margin: 0;
height: 40px;
justify-content: end;
}
li {
display: inline-block;
justify-content: flex-end;
align-items: flex-end;
}
a {
text-decoration: none;
color: navy;
margin: 5px;
}
form {
background-color: greenyellow;
margin: 0;
height: 500px;
}
.input-container {
padding: 20px;
}
input {
display: block;
height: 50px;
text-align: center;
margin: 0;
}
.id {
margin-bottom: 10px;
}
.pw {
margin-top: 5px;
}
.section2 {
background-color: palevioletred;
margin: 0;
height: 200px;
}
.section2 > h2 {
margin-top: 0;
}
footer {
background-color: skyblue;
height: 100px;
}
footer > p {
margin: 0;
text-align: center;
}
</style>
</head>
<body>
<header>*** 블로그 입니다</header>
<nav>
<ul class="list">
<li><a href="#">HOME</a></li>
<li><a href="#">DIARY</a></li>
<li><a href="#">MEDIA</a></li>
</ul>
</nav>
<article>
<section>
<form action="">
<div class="input-container">
<input class="id" type="text" placeholder="아이디" />
<input class="pw" type="password" placeholder="비밀번호" />
</div>
</form>
</section>
<section class="section2">
<h2>안녕하세요!</h2>
<p>HTML 실습 과제입니다.</p>
</section>
</article>
<footer>
<p>이곳은 footer입니다.</p>
</footer>
</body>
</html>