-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
92 lines (66 loc) · 2.3 KB
/
forms.html
File metadata and controls
92 lines (66 loc) · 2.3 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forms in HTML</title>
</head>
<body>
<div>
<!--Forms In HTML-->
<form>
<label>Enter Your Name:</label>
<input type="text">
<br><br>
<!--Color Input-->
<input type="color">
<br><br>
<!--Email Input-->
<label>Enter Your Email:</label>
<input type="email">
<br><br>
<!--Date Input-->
<label>Enter Your DOB:</label>
<input type="date">
<br><br>
<!--Number Input-->
<label>Enter Your Number:</label>
<input type="number">
<br><br>
<!--Password Input-->
<label>Enter Your Password:</label>
<input type="password">
<br><br>
<!--Time Input-->
<label>Enter Time:</label>
<input type="time">
<br><br>
<!--URL Input-->
<label>Enter Your Website URL:</label>
<input type="url">
<br><br>
<!--Range Input-->
<label>Enter Range:</label>
<input type="range" min="100" max="1000">
<br><br>
<!--Hidden Input-->
<label>Hidden:</label>
<input type="hidden" value="This thing is Hidden.">
<br><br>
<!--Textarea Input-->
Enter Any Thing:
<textarea cols="30" rows="10" placeholder="World"></textarea>
<br><br>
<!--Number Input-->
<input type="reset" value="Reset Form by input tag">
<button type="reset">Reset Form by button tag</button>
<br><br>
<!--Button with input and button tag-->
<input type="submit" value="Submit by input tag">
<button>Submit by button tag</button>
</form>
</div>
</body>
</html>