-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExample_09.html
More file actions
40 lines (37 loc) · 1.27 KB
/
Copy pathExample_09.html
File metadata and controls
40 lines (37 loc) · 1.27 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
<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="UTF-8">
<title>Registration</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<form action="">
<fieldset>
<label for="">First name:</label><br>
<input type="text"><br>
<label for="">Last name:</label><br>
<input type="text"><br>
<label for="">Email:</label><br>
<input type="email"><br>
<label for="">Gender: </label>
<input type="radio" name="Gender">Male
<input type="radio" name="Gender">Female<br>
<label for="">Favorite: </label>
<input type="checkbox">Java
<input type="checkbox">DataBase
<input type="checkbox">HTML&CSS<br>
<label for="">University: </label>
<select>
<option value="">Konkuk</option>
<option value="">Dongguk</option>
<option value="">Hongdae</option>
</select><br>
<label for="">Date: </label>
<input type="date"><br>
<textarea name="" id="" cols="30" rows="7" placeholder="Text Anything"></textarea><br>
<input type="submit" value="Registration">
</fieldset>
</form>
</body>
</html>