-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
57 lines (47 loc) · 1.33 KB
/
form.html
File metadata and controls
57 lines (47 loc) · 1.33 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>HTML 5 Form</title>
</head>
<body>
<fieldset>
<legend>HTML 5 Form Input</legend>
<form>
<input type="text" list="course" />
<datalist id="course">
<option value="PHP" />
<option value="Java" />
<option value="C" />
<option value="C++" />
<option value="JS" /></datalist
><br /><br />
Name
<input type="text" required minlength="5" maxlength="15" name="" />
<br />
<br />
Qty <input type="number" min="1" max="10" value="5" /> <br />
<br />
Date <input type="date" /> <br />
<br />
Time <input type="time" /> <br />
<br />
Week <input type="week" /> <br />
<br />
Month <input type="month" /> <br />
<br />
Color <input type="color" /> <br />
<br />
URL <input type="url" /> <br />
<br />
Range <input type="range" /> <br />
<br />
<button>Save</button>
<input type="reset" value="reset" />
<button type="reset">Reset</button>
<button type="button">Save</button>
</form>
</fieldset>
</body>
</html>