-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmap.html
More file actions
80 lines (59 loc) · 2.36 KB
/
Copy pathmap.html
File metadata and controls
80 lines (59 loc) · 2.36 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
<!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>
<!-- <img src="emran.jpg" alt="" usemap="#mymap"> -->
<map name="mymap">
<area shape="circle" coords="34,44,270,350" href="Layout/layout.html" alt="Layout">
<area shape="circle" coords="250,20,70,350" href="Layout/layout.html" alt="">
</map>
<fieldset>
<legend>Registration Form</legend>
<form action="" method="get">
<label>Full Name</label><br>
<input type="text" name="name" /><br>
<label >E-mail</label><br>
<input type="email" /><br>
<label >Password</label><br>
<input type="password" /><br>
<label >Cell No</label><br>
<input type="text" /><br>
<label >Gender</label><br>
<input type="radio" name="gender"> Male
<input type="radio" name="gender"> Female
<input type="radio" name="gender"> Other <br>
<label >Hobby</label><br>
<input type="checkbox">Cooking
<input type="checkbox">Playing
<input type="checkbox">Coding
<input type="checkbox">Travelling
<input type="checkbox">Gradening <br>
<label >Subject</label><br>
<select name="" id="">
<option value="">--Select One--</option>
<option value="">JEE</option>
<option value="">C#</option>
<option value="">NT</option>
<option value="">DDD</option>
<option value="">GD</option>
<option value="">GAVE</option>
<option value="">WDPF</option>
</select> <br>
<label >DoB</label>
<input type="date" placeholder="MM-DD-YYYY"><br>
<label >Picture</label><br>
<input type="file" name="" id=""><br>
<label >About You</label><br>
<textarea name="" id="" cols="30" rows="10" maxlength="200"></textarea>
<br>
<input type="submit" value="Signup"><br>
<input type="reset" value="Reset">
</form>
</fieldset>
<object data="WIN_20230523_09_51_38_Pro.mp4" width="100%"></object>
</body>
</html>