-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathFormsDateEmail.html
More file actions
128 lines (83 loc) · 2.94 KB
/
FormsDateEmail.html
File metadata and controls
128 lines (83 loc) · 2.94 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
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
122
123
124
125
126
127
128
<!DOCTYPE html>
<html>
<body>
<form>
Pick your Favorite color: <br><br>
<input type="color" name="up" value="white"> Color<br><br>
<input type="color" name="down" value="black"> Color
</form> <hr>
<form>
Select Start and End Date: <br><br>
<input type="date" name="Startdate"> Start date<br><br>
<input type="date" name="Enddate"> End date<br><br>
<input type="submit">
</form> <hr>
<form>
<label>
Select the meeting schedule: <br><br>
Select date & time: <input type="datetime-local" name="meetingdate"> <br><br>
</label>
<input type="submit">
</form> <hr>
<form>
<label><b>Enter your Email-address</b></label>
<input type="email" name="email" required>
<input type="submit">
<p><strong>Note:</strong>User can also enter multiple email addresses separating by comma or whitespace as following: </p>
<label><b>Enter multiple Email-addresses</b></label>
<input type="email" name="email" multiple>
<input type="submit">
</form> <hr>
<form>
<label>Enter your Birth Month-year: </label>
<input type="month" name="newMonth">
<input type="submit">
</form> <hr>
<form>
<label>Enter your age: </label>
<input type="number" name="num" min="25" max="60">
<input type="submit">
</form> <hr>
<form>
<label>Enter your website URL: </label>
<input type="url" name="website" placeholder="http://example.com"><br>
<input type="submit" value="send data">
</form> <hr>
<form>
<label><b>Select your best week of year:</b></label><br><br>
<input type="week" name="bestweek">
<input type="submit" value="Send data">
</form> <hr>
<form>
<label>Search here:</label>
<input type="search" name="q">
<input type="submit" value="search">
</form> <hr>
<form>
<label><b>Enter your Telephone Number(in format of xxx-xxx-xxxx):</b></label>
<input type="tel" name="telephone" pattern="[0-5]{4}-[2-5]{7}" required>
<input type="submit"><br><br>
</form> <hr>
<form >
<label for="c">Career</label>
<select name="c" id="c">
<optgroup label="Software Engineer">
<option value="n">Naveen</option>
<option value="a">Aakash</option>
</optgroup>
<optgroup label="Testing Engineer">
<option value="r">Riju</option>
<option value="v">Vishal</option>
</optgroup>
<optgroup label="Web Developer">
<option value="l">Lalith</option>
<option value="j">Jai Surya</option>
</optgroup>
</select>
<br><br>
<input type="submit" value="Submit">
</form>
<label for="file">Downloading progress:</label>
<progress id="file" value="10" max="100"> 50%</progress>
</body>
</html>