-
Notifications
You must be signed in to change notification settings - Fork 0
/
info.html
101 lines (85 loc) · 2.81 KB
/
info.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
100
101
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<form>
<table border="1">
<tr>
<th colspan="3">About me -- 109306058</th>
</tr>
<tr>
<td rowspan="3">
<img src="https://ichef.bbci.co.uk/news/1024/cpsprodpb/68DF/production/_109474862_angrycat-index-getty3-3.jpg"
alt="Google icon" width=150 height=150 />
</td>
<td colspan="2">
<p>Name <input type="text" name="name"><br>
Gender:
<input type="radio" id="male" name="gender" value="Male">
<label for="male">Male</label>
<input type="radio" id="female" name="gender" value="Female">
<label for="female">Female</label>
<input type="radio" id="other" name="gender" value="Other">
<label for="other">Other</label> </p>
</td>
</tr>
<tr>
<td><p>Country
<select name="country" id="country">
<option value="Taipei">Taipei</option>
<option value="Taoyuan">Taoyuan</option>
</select></p>
</td>
<td><p>Birthday: <input type="birthday" name="birthday" required></p></td>
</tr>
<tr>
<td colspan="2"><p>E-mail: <input type="email" name="email" required></p></td>
</tr>
<tr>
<td><p>Hobby</p></td>
<td colspan="2">
<input type="checkbox" id="hobby0" name="hobby0" value="Swimming">
<label for="hobby0">Swimming</label>
<input type="checkbox" id="hobby1" name="hobby1" value="Volleyball">
<label for="hobby1">Volleyball</label>
<input type="checkbox" id="hobby2" name="hobby2" value="Movies">
<label for="hobby2">Movies</label>
<input type="checkbox" id="hobby3" name="hobby3" value="Games">
<label for="hobby3">Games</label>
<input type="checkbox" id="hobby4" name="hobby4" value="Sleeping">
<label for="hobby4">Sleeping</label>
</td>
</tr>
<tr>
<td><p>Skill</p></td>
<td colspan="2">
<input type="checkbox" id="skill0" name="skill0" value="Java">
<label for="skill0">Java</label>
<input type="checkbox" id="skill1" name="skill1" value="HTML">
<label for="skill1">HTML</label>
<input type="checkbox" id="skill2" name="skill2" value="Python">
<label for="skill2">Python</label>
<input type="checkbox" id="skill3" name="skill3" value="Micorsoft Office">
<label for="skill3">Micorsoft Office</label>
<input type="checkbox" id="skill4" name="skill4" value="Adobe Premiere">
<label for="skill4">Adobe Premiere</label>
</td>
</tr>
<tr>
<td><p>Say Somethong</p></td>
<td colspan="2">
<textarea id="comment" name="comment" rows="5" cols="50" maxlength="120"></textarea>
</td>
</tr>
<tr>
<th colspan="3">
<input type="submit" name="submit" value="Submit">
<input type="reset" name="clear" value="Clear">
</th>
</tr>
</table>
</form>
</body>
</html>