-
Notifications
You must be signed in to change notification settings - Fork 0
/
01.html
121 lines (86 loc) · 2.35 KB
/
01.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<figure>
<img src="https://exfast.me/wp-content/uploads/2019/04/1554182762-cddf42691119d44059a16a4095047a33-1140x600.jpg" alt="安安">
<figcaption>
這是風景圖
</figcaption>
</figure>
<form>
<label for="user_name">姓名</label>
<input type="text" id = "user_name">
<br>
<label>
<input type="checkbox">
上網
</label>
<label>
<input type="checkbox">
釣魚
</label>
<label>
<input type="checkbox">
逛街
</label>
<br>
<label>
<input type="radio" name="aa">
睡覺
</label>
<label>
<input type="radio" name="aa">
打電動
</label>
<label>
<input type="radio" name="aa">
爬山
</label>
<input type="radio" id="movie" name="aa">
<label for="movie">看電影</label>
<br>
<label for="user_password">密碼</label>
<input type="password" id = "user_password">
<br>
<label for="user_email">信箱</label>
<input type="email" id = "user_email">
<br>
<label for="user_tel">電話</label>
<input type="tel" id = "user_telo">
<br>
<label for="user_num">數值</label>
<input type="number" id = "user_num">
<br>
<label for="user_birthday">生日</label>
<input type="date" id = "user_birthday">
<br>
<label for="user_time">時間</label>
<input type="time" id = "user_time">
<br>
<label for="user_color">顏色</label>
<input type="color" id = "user_color">
<br>
<label for="user_url">網址</label>
<input type="url" id = "user_url">
<br>
<label for="user_range">範圍區段</label>
<input type="range" id = "user_range">
<br>
<label for="user_file">上傳檔案</label>
<input type="file" id = "user_file">
<br>
<label for="user_search">搜尋</label>
<input type="search" id = "user_search">
<br>
<input type="submit" value="送出">
<input type="reset">
<input type="button" value="送出資料">
<button>送出資料</button>
</form>
</body>
</html>