-
Notifications
You must be signed in to change notification settings - Fork 0
/
formday2.html
53 lines (49 loc) · 1.38 KB
/
formday2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Day2 Form</title>
</head>
<body>
<input type="text" autofocus placeholder="Enter First Name Here..." maxlength="5">
<hr>
<input type="radio" id="G1" name="Gender" >
<label for="G1">Male</label>
<input type="radio" id="G2" name="Gender" >
<span>Female</span>
<hr>
<input type="checkbox">Accept Term and Condition
<hr>
<input type="file" multiple accept=".jpg,.jpeg,.png">
<hr>
<input type="button" value="Click Here..">
<hr>
<input type="submit">
<hr>
<button>Click Here..</button>
<hr>
<input type="date">
<hr>
<input type="color">
<hr>
<input type="time">
<hr>
<input type="range">
<hr>
<textarea rows="5" placeholder="Enter Address Here.." maxlength="200"></textarea>
<hr>
<fieldset>
<legend>Sign In</legend>
<span>Username:</span>
<br>
<input type="text" placeholder="Enter Username Here.." maxlength="50">
<br>
<span>Password</span>
<br>
<input type="password" placeholder="Enter Password Here.." maxlength="12">
<br><br>
<input type="button" value="Sign In">
</fieldset>
</body>
</html>