-
Notifications
You must be signed in to change notification settings - Fork 0
/
step06.html
99 lines (92 loc) · 2.49 KB
/
step06.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
button {
border : 1px solid blue;
}
.btn1 {
margin-top : 10px;
margin-right : 10px;
margin-bottom: 10px;
margin-left: 10px;
}
.btn2 {
margin : 10px;
}
.btn3 {
margin : 10px 10px 10px 10px;
}
.btn4 {
margin-top : 10px;
margin-right : 20px;
margin-bottom: 30px;
margin-left : 40px;
}
.btn5 {
margin : 10px 20px 30px 40px;
}
.btn6 {
margin-top : 10px;
margin-right: 20px;
margin-bottom: 10px;
margin-left: 20px;
}
.btn7 {
margin : 10px 20px;
}
.btn8 {
margin-top: 10px;
margin-right: 20px;
margin-bottom: 30px;
margin-left: 20px;
}
.btn9 {
margin : 10px 20px 30px;
}
.login {
border : 1px solid black;
width : 176px;
margin : 0 auto;
padding : 10px;
}
</style>
<title>Margin</title>
</head>
<body>
<button>버튼1</button>
<button class="btn1">버튼2</button>
<button class="btn2">버튼3</button>
<button class="btn3">버튼4</button>
<button class="btn4">버튼5</button>
<button class="btn5">버튼6</button>
<button class="btn6">버튼7</button>
<button class="btn7">버튼8</button>
<button class="btn8">버튼9</button>
<button class="btn9">버튼10</button>
<div>안녕하세요</div>
<div class="login">
<h3>로그인</h3>
<form action="save.html" method="post">
<div>
<label for="id"> 아이디 </label>
<input type="text" name="id1" id="id">
</div>
<div>
<label for="pwd">비밀번호</label>
<input type="password" name="pwd1" id="pwd">
</div>
<div>
<button type="submit">로그인</button>
<button type="reset">취소</button>
</div>
<div>
<a href="step10.html">회원가입</a>
</div>
</form>
</div>
</body>
</html>