This repository was archived by the owner on Feb 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex4.html
More file actions
87 lines (79 loc) · 2.92 KB
/
index4.html
File metadata and controls
87 lines (79 loc) · 2.92 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
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- Meta Tags -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Petit+Formal+Script" rel="stylesheet">
<!-- Titles -->
<title>Selectors | Contact</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="navbar.css">
<link rel="stylesheet" type="text/css" href="footer.css">
<title>4th Webpage</title>
<style>
.contactinfo{
padding: 30px;
}
.contact_number{
BACKGROUND: chocolate;
overflow: hidden;
margin-bottom: 0px;
text-align: center;
}
</style>
</head>
<body>
<header>
<nav class="navigation-bar">
<a href="index.html">
<img class="logo" src="images/logo/main_logo.png" alt="Main logo">
</a>
<ul>
<li><a href="index.html" target="">Home</a></li>
<li><a href="index2.html" target="">About</a></li>
<li><a href="index3.html" target="">Flavors</a></li>
<li><a href="index4.html" target="">Contact</a></li>
</ul>
</nav>
</header>
<section style="height:400px !important">
<section style="float:left; background:#4aabff; width:50%; height:100%">
<div class="contactinfo">
<h1 style="color: white;"> Contact Us</h1></br>
<p>1 Young Street, Bronx, NY 10000</p>
</div>
</section>
<section style="overflow: hidden;width:50%">
<div id="googleMap" style="width:100%;height:400px;"></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>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCYKAQUytsNqd5A_elPA2IBoDWt99zvQks&callback=myMap"></script>
</section>
</section>
<section class="contact_number">
<h1> CALL US: 914-123-4000</h1>
</section>
<footer>
<div style="position:absolute;bottom:0;" class="footer">
<ul>
<li> <a href="index4.html">Privacy Policy</a></li>
<li> <a href="index4.html">Terms of Use</a></li>
<li> <a href="index4.html">Sponsers</a></li>
<li><a href="index4.html">Location</a></li>
</ul>
<p>© 2019 The Selectors</p>
</div>
</footer>
</body>
</html>