-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
83 lines (68 loc) · 2.39 KB
/
Copy pathform.html
File metadata and controls
83 lines (68 loc) · 2.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form</title>
</head>
<body>
<!--Forms creating -->
<h1>Forms Creating</h1>
<form action="index.html">
<label for="name">Name</label>
<input type="text" placeholder="Enter Your Name"> <br> <!--br tag for next line--> <br>
<label for="email">Email</label>
<input type="email" placeholder="Enter Your Mail Id"> <br> <br>
<label for="pass">Password</label>
<input type="password" maxlength="8" placeholder="Enter Your Password"> <br> <br>
<label for="number">Choose</label>
<input type="number" min="3" max="9" placeholder="3 to 9"> <br> <br>
<label for="commentsection">Comment Section</label> <br>
<textarea placeholder="Comment Section"></textarea> <br> <br>
<!--Multiple options-->
<h2>Which Instructor Would You Like to Study With</h2>
<input type="checkbox">
<label for="Zeeshan">Zeeshan</label>
<input type="checkbox">
<label for="Artaza">Artaza</label>
<input type="checkbox">
<label for="Somad">Somad</label>
<input type="checkbox">
<label for="Asim">Asim</label>
<br> <br>
<!--Single options-->
<h2>Are You Agree With the Instuctors Policy</h2>
<input type="radio" name="Options">
<label for="Yes">Yes</label>
<input type="radio" name="Options">
<label for="No">No</label> <br> <br>
<!--DropDown-->
<h2>Select Course</h2>
<label for="Select">Select</label>
<select name="" id="">
<option value="">Html</option>
<option value="">CSS</option>
<option value="">JavaScript</option>
</select> <br><br>
<!--Calendar and time-->
<h2>Select Your Date And Time</h2>
<label for="date">Date</label>
<input type="date" name="date" id="date"> <br> <br>
<label for="time">Time</label>
<input type="time"> <br> <br>
<!--File access-->
<input type="file"> <br> <br>
<!--Color selection-->
<label for="color">Select Your Course Color</label>
<input type="color"> <br> <br>
<!--Search-->
<label for="search">Search</label>
<input type="search" placeholder="search"> <br> <br>
<!--3 Type of buttons-->
<button>Submit</button>
<button type="reset">Reset</button>
<button type="menu">Menu</button>
<button disabled>Agree</button>
</form>
</body>
</html>