-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
54 lines (47 loc) · 2.04 KB
/
Copy pathcontact.html
File metadata and controls
54 lines (47 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact Page</title>
</head>
<body>
<h1><U>Contact Me</U></h1>
<label for="name">Name:</label>
<input type="text" name="name" value="" id="name">
<br><br>
<label for="email">Email:</label>
<input type="text" name="email" value="" id="email">
<br><br>
<label for="address">Address:</label><br>
<textarea name="address" placeholder="Type Your Address Here....." rows="5" cols="45"></textarea>
<br><br>
<label for="date">Date Of Birth:</label>
<input type="date" name="date" value="">
<br><br>
<label for="year">Btech Year:</label>
<select name="years" id="year">
<option value="2021">1st year</option>
<option value="2020">2nd year</option>
<option value="2019">3rd year</option>
<option value="2018">4th year</option>
</select>
</datalist>
</form>
<br><br>
<label for="gender">Gender:</label>
<br>
<input type="radio" name="gender" value="male">
<label for="male">Male</label>
<input type="radio" name="gender" value="female">
<label for="female">Female</label>
<br><br>
<input type="checkbox" name="like" value="">
<label for="like">I would like to subscribe to your newsletter</label>
<br><br>
<button type="button" name="button">Submit</button>
<hr>
<p>Email: abcd@ieee.org</p>
<div class="mapouter"><div class="gmap_canvas"><iframe class="gmap_iframe" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?width=600&height=400&hl=en&q=GOVERNMENT COLLEGE OF ENGINEERING KANNUR&t=&z=14&ie=UTF8&iwloc=B&output=embed"></iframe><a href="https://www.fridaynightfunkin.net/">Friday Night Funkin Download</a></div><style>.mapouter{position:relative;text-align:right;width:600px;height:400px;}.gmap_canvas {overflow:hidden;background:none!important;width:700px;height:350px;}.gmap_iframe {width:700px!important;height:350px!important;}</style></div>
<hr>
</body>
</html>