forked from Ohmjezz/SE_CAMP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (79 loc) · 2.97 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Workshop #HTML - FORM</h1>
<form action="#">
<table>
<tr>
<td>ชื่อ</td>
<td><input type="text"></td>
</tr>
<tr>
<td>สกุล</td>
<td>
<input type="text" name="" id="">
</td>
</tr>
<tr>
<td>วัน/เดือน/ปีเกิด</td>
<td><input type="date" name="" id=""></td>
</tr>
<tr>
<td>อายุ</td>
<td>
<input type="text" name="" id="">
</td>
</tr>
<tr>
<td>เพศ</td>
<td>
<input id="radio_a"type="radio" name="same_radio"><label for="radio_a">ชาย</label>
<input id="radio_b"type="radio" name="same_radio"><label for="radio_b">หญิง</label>
</td>
</tr>
<tr>
<td>รูป</td>
<td><input type="file" name="" id=""></td>
</tr>
<tr>
<td>ที่อยู่</td>
<td><textarea name="" id="" rows="4" cols="40" ></textarea></td>
</tr>
<tr>
<td>สีที่ชอบ</td>
<td>
<select name="" id="" >
<option value="red">สีแดง</option>
<option value="green">สีเขียว</option>
<option value="blue">สีฟ้า</option>
</select>
</td>
</tr>
<tr>
<td>แนวเพลงที่ชอบ</td>
<td>
<input id="radio_s_a"type="radio" name="same_radio"><label for="radio_s_a">เพื่อชีวิต</label>
<input id="radio_s_b"type="radio" name="same_radio"><label for="radio_s_b">ลูกทุ่ง</label>
<input id="radio_s_c"type="radio" name="same_radio"><label for="radio_s_c">อื่นๆ</label>
</td>
</tr>
<tr>
<td colspan="2">
<input type="checkbox" id="check">
<label for="check">ยินยอมให้เก็บข้อมูล</label>
<br>
<button type="reset">reset</button>
<span style="padding-left: 140px;"></span>
<button type="submit">submit</button>
</td>
</tr>
</table>
</form>
</body>
</html>