-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmemb4.html
41 lines (41 loc) · 1.17 KB
/
memb4.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
<!doctype html> <!-- memb1.html -->
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<style>
#section0 {width:400px; height:240px; border:solid 1px lightgray; border-radius:1em;}
ul {list-style:none;}
ul.level_1 > li {display:inline-block}
.level_1 span {display:inline-block; width:70px;}
.level_1 input {width:100px;}
.level_1 input[type="checkbox"] {width:20px;}
button {width:70px; height:25px;}
</style>
<title>로그인 실습</title>
</head>
<body>
<section id="section0">
<h4>회원 가입</h4>
<ul class="level_1">
<li><span>아이디</span></li>
<li><input type="text"></li>
<li><button>중복확인</button></li>
</ul>
<ul class="level_1">
<li><span>비밀번호</span></li>
<li><input type="password"></li>
</ul>
<ul class="level_1">
<li><span>취미</span></li>
<li><input type="checkbox">낚시</li>
<li><input type="checkbox">노래</li>
<li><input type="checkbox">독서</li>
</ul>
<ul class="level_1">
<li><button>회원가입</button></li>
<li><button>취소</button></li>
</ul>
</section>
</body>
</html>