-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
161 lines (136 loc) · 3.93 KB
/
contact.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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html>
<head>
<title>Contact US</title>
<style>
body {
background-color: beige;
}
.v {
position: absolute;
right: 10px;
width: 30%;
border: 5px solid black;
padding: 10px;
}
a {
color: brown;
}
.s {
color: darkgreen;
}
h1 {
color: darkred;
background-color: tan;
}
h2 {
color: darkmagenta;
}
.navbar {
overflow: hidden;
background-color: rgb(19, 18, 18);
opacity: 0.9;
}
.navbar a {
float: left;
font-size: 16px;
color: rgb(7, 216, 7);
text-align: center;
padding: 14px 8%;
text-decoration: none;
}
.dropdown {
float: left;
overflow: hidden;
}
.dropdown .dropbtn {
font-size: 16px;
border: none;
outline: none;
color: rgb(7, 216, 7);
padding: 14px 16px;
background-color: inherit;
font-family: inherit;
margin: 0;
}
.navbar a:hover,
.dropdown:hover .dropbtn {
background-color: red;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}
.dropdown-content a {
float: none;
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown-content a:hover {
background-color: #ddd;
}
.dropdown:hover .dropdown-content {
display: block;
}
</style>
</head>
<body>
<div class="navbar">
<a href="homee.html">HOME</a>
<a href="about.html">ABOUT</a>
<a href="contact us.html">CONTACT</a>
<a href="log form.html">Sign Up</a>
<div class="dropdown">
<button class="dropbtn">MENU
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="eat.html">EAT</a>
<a href="Drinks.html">DRINK</a>
</div>
</div>
</div>
<h1><b>-CONTACT US-</b></h1>
<div class="v">
<h2>Our restaurant is located right in the heart of the city of London.</h2>
<hr>
<h2><b>Connect with us:</b></h2>
<h3>
<pre>
Lower Grosvenor Place
Westminster
London SW1W 0EJ</pre>
</h3>
<div>
<div class="s">
<pre><b>
+44 20 7834 0722
+44 7464 629 719
<h2><b>E-Mail:</b></h2><b> <a href="[email protected]">[email protected]</a></b>
</pre>
</div>
</div>
</div>
<div id="googleMap" style="width:100%; "></div>
<script>
function myMap() {
var mapProp = {
center: new google.maps.LatLng(51.508742, -0.120850),
zoom: 5,
};
var map = new google.maps.Map(document.getElementById("googleMap"), mapProp);
}
</script>
<iframe
src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d9935.295163665698!2d-0.14438!3d51.498101!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xe299c95596f7e6ed!2sDammikas!5e0!3m2!1sen!2sus!4v1590838891044!5m2!1sen!2sus"
width="600" height="450" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false"
tabindex="0"></iframe>
</body>
</html>