-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExample_12.html
More file actions
72 lines (69 loc) · 2.25 KB
/
Copy pathExample_12.html
File metadata and controls
72 lines (69 loc) · 2.25 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
71
72
<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
label{
display: inline-block;
width: 200px;
margin: 5px;
}
.mob{
width: 50px;
}
</style>
</head>
<body>
<form action="">
<h1>Sign Up</h1>
<p>
Become a member of Andrew's Company, and enjoy a variety of benefits.
</p>
<label for="">Name</label>
<input type="text"><br>
<label for="">ID</label>
<input type="text"><br>
<label for="">Password</label>
<input type="password"><br>
<label for="">Confirm Password</label>
<input type="password"><br>
<label for="">Mobile</label>
<input type="text" class="mob">-
<input type="text" class="mob">-
<input type="text" class="mob"><br>
<label for="">E-mail</label>
<input type="text">@
<input type="text">
<select name="" id="">
<option value="1">Direct input</option>
<option value="2">naver.com</option>
<option value="3">daum.net</option>
<option value="4">gmail.com</option>
</select><br>
<label for="">Whether to receive email</label>
<input type="checkbox">Acceptance<br>
<label for="">Interest</label>
<input type="checkbox">Movie
<input type="checkbox">theater
<input type="checkbox">Travel
<input type="checkbox">Mountain Climbing
<input type="checkbox">Visiting a restaurant
<input type="checkbox">Volunteer
<input type="checkbox">Etc<br>
<label for="">Gender</label>
<input type="radio" name="Gender">Male
<input type="radio" name="Gender">Female <br>
<label for="">Path learned</label>
<select name="" id="">
<option value="">Choose</option>
<option value="">Internet</option>
<option value="">Acquaintance introduction</option>
<option value="">Etc</option>
</select><br>
<textarea name="" id="" cols="80" rows="5"></textarea><br>
<button type="submit">Sign Up</button>
<button type="reset">Cancel</button>
</form>
</body>
</html>