blob: d95a2c51e3226b6011a6135b5ca5662e61d296b0 (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<select id="selectexample">
<option>1</option>
<option>2</option>
</select>
<input type="date" id="dateexample" />
<input type="month" id="monthexample" />
<input type="week" id="weekexample" />
<input type="time" id="timeexample" />
<input type="datetime-local" id="datetimelocalexample" />
<input type="color" id="colorexample" value="#ffffff" />
<input type="file" id="fileexample" accept="image/*,.pdf" capture="user" />
</body>
</html>
|