forked from jonathanroy105/Travelonomy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact_us.html
More file actions
52 lines (47 loc) · 1.6 KB
/
contact_us.html
File metadata and controls
52 lines (47 loc) · 1.6 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
<!DOCTYPE html>
<html>
<head>
<style>
body
{
background-image: url(http://localhost/Mini%20Project/homebg.png);
background-color:#003c4d;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
background-blend-mode:multiply;
height: 100%;
width: 100%;
margin: 0;
}
img
{
width:90%;
text-align: center;
margin-top: -0.5%;
border-radius: 15px;
}
#mapimg
{
display: grid;
place-items: center;
}
h1
{
margin-left: 1%;
margin-top: 1%;
}
</style>
</head>
<body>
<h1 align="center" style="font-family: system-ui; color: white">CONTACT US</h1>
<div id="mapimg">
<img src="http://localhost/Mini%20Project/contact_src.png" usemap="#mapping" />
<map name="mapping">
<area shape="rect" coords="0,0,350,200" href="http://localhost/Mini%20Project/flights.php/" title="Book a Flight">
<area shape="rect" coords="351,900,1465,0" alt="Computer" href="https://www.google.com/maps/place/13%C2%B005'58.7%22N+77%C2%B034'41.5%22E/@13.0998207,77.5768958,17.18z/data=!4m13!1m6!3m5!1s0x3bae198779dd2f97:0x8ff19c196dda5ae0!2sBeyond+Bicycle+Yelahanka+-+Multi+Brand+Bicycle+Store!8m2!3d13.0995685!4d77.578243!3m5!1s0x0:0x80741f992a0be6fb!7e2!8m2!3d13.0996418!4d77.5781933" target="_blank" title="Find our Location">
<area shape="rect" coords="0,383,350,460" href="http://localhost/Mini%20Project/home1.html" title="Return to Home">
</map>
</div>
</body>
</html>