-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpractice_04.html
35 lines (32 loc) · 1.34 KB
/
practice_04.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>practice_04</title>
</head>
<body>
<form action="/action.php">
<label for="">
<input type="checkbox" name="subject" value="math" id="101">math
</label>
<br><br>
<textarea name="feedback" id="" cols="30" placeholder="write feedback"></textarea>
<br><br>
<select name="city" id="">
<option value="mumbai">mumbai</option>
<option value="Delhi">Delhi</option>
<option value="Hydrabad">Hydrabad</option>
<option value="Pune">Pune</option>
<option value="goa">Goa</option>
</select>
<br><br>
<input type="submit" value="submit">
</form>
<br>
<!-- website inside website -->
<!-- <iframe width="560" height="315" src="https://www.youtube.com/embed/HcOc7P5BMi4" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe> -->
<!-- <iframe src="https://msha.ke/btechnotes" frameborder="0" height="315"></iframe> -->
<video src="/video.mp4" height="315" controls loop autoplay>video</video>
</body>
</html>