-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathform.html
More file actions
75 lines (51 loc) · 2.28 KB
/
form.html
File metadata and controls
75 lines (51 loc) · 2.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form Example</title>
</head>
<body>
<form action="#" method="">
<label>Enter Your Name: </label>
<input type="text" name="fname" id="fname" placeholder="Enter Your Name">
<br/>
<input type="email" name="email" id="email" placeholder="Enter Your Email">
<br/>
<label>Enter Your Password: </label>
<input type="password" name="password" id="password" placeholder="Enter Your Password">
<br/>
<label>Select Your Date:</label>
<input type="date" name="bdate" id="bdate">
<br/>
<label>Enter Your Address </label>
<textarea name="address" id="address" style="resize: none;">
</textarea>
<br/>
<input type="radio" name="gender" value="male">
<label>Male</label>
<input type="radio" name="gender" value="female">
<label>Female</label>
<br/>
<label>Select Your Hobbies</label>
<input type="checkbox" name="h1" id="h1" value="Cricket">
<label>Cricket</label>
<input type="checkbox" name="h2" id="h2" value="Swimming">
<label>Swimming</label>
<input type="checkbox" name="h3" id="h3" value="Travelling">
<label>Travelling</label>
<br/>
<label>Select Any Language</label>
<select name="lang" id="lang">
<option value="Python">Python</option>
<option value="Java">Java</option>
<option value="C" selected>C</option>
<option value="C++">C++</option>
</select>
<br/>
<input type="submit" name="submit" value="save">
</form>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d26241.261323405626!2d72.83706594375239!3d19.105194277827582!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3be7c984163a9269%3A0x6d6da73fe2055ccf!2sItvedant%20Education%20Pvt.%20Ltd%20-%20Andheri!5e0!3m2!1sen!2sin!4v1652283734633!5m2!1sen!2sin" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</body>
</html>