-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
64 lines (55 loc) · 2.1 KB
/
form.html
File metadata and controls
64 lines (55 loc) · 2.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<p><h1>Ente your login detail</h1></p>
<form action="/action.php">
<input type="text" placeholder="Enter user name here">
<br><br>
<input type="Password" placeholder="Password">
<br><br>
<p><b>select your class</b></p>
<label for="12"> <!-- for assigning any heading or label on any input we will use label tag. -->
<input type="radio" value="class xi" name="class" id="12">class xi
</label>
<br>
<label for="10">
<input type="radio" value="class xii" name="class" id="10">class xii
</label>
<br>
<p><b>Select your subject</b></p>
<!-- checkboxes -->
<label for="Math">
<input type="checkbox" value="Math" name="Subject" id="2"> Math
<br>
<input type="checkbox" value="Math" name="Subject" id="4"> English
<br>
<input type="checkbox" value="Math" name="Subject" id="6"> Urdu
<br>
<input type="checkbox" value="Math" name="Subject" id="1"> Chemistry
<br><br>
<p><h3>Select your city</h3></p>
<select name="City" id="">
<option value="Islamabad">Islamabad</option>
<option value="Islamabad">Faisalabad</option>
<option value="Islamabad">Karachi</option>
<option value="Islamabad">Lahore</option>
</select>
<br>
<br>
<textarea name="Feedback" id="19" placeholder="Please give your feedback here">Feedback</textarea>
<br><br>
<input type="submit" value="Submit">
</label>
<!-- Select tag in HTML -->
</form>
<br><br><br>
<iframe width="560" height="315" src="https://www.youtube.com/embed/HcOc7P5BMi4?si=dXZ3hVmEr9P9GlKr" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<br><br>
<video src=""></video>
</body>
</html>