-
Notifications
You must be signed in to change notification settings - Fork 0
/
locations.html
52 lines (47 loc) · 1.65 KB
/
locations.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
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="app.js"></script>
<script type="text/javascript" async>
window.addEventListener("load", async () => {
await setNavBar();
})
</script>
<meta charset="utf-8">
<title>Customize the scroll-bar</title>
<link rel="stylesheet" href="./navbar.css">
<style media="screen">
section {
background-image: linear-gradient(to right, rgb(255, 165, 0), rgb(220, 190, 93));
}
.h1 {
float: right;
}
</style>
</head>
<body>
<div class="navbar">
<nav id="nav">
<ul id="navElem">
<li><a href="./index.html">Home</a></li>
<li><a href="./catalog.html">Catalog</a></li>
<li><a href="./about.html">About Us</a></li>
<li><a href="./locations.html">Locations</a></li>
<li><a href="./contact.html">Contact Us</a></li>
</ul>
</nav>
</div>
<section>
<h1 style="color:blackS;">
Our Locations
</h1>
<div>
<!-- Google Map Copied Code -->
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d104978.93441318868!2d33.156012437499996!3d34.690252999999984!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14e73197985a897d%3A0x78f109055731bbba!2sTrendy%20Shoes!5e0!3m2!1siw!2sil!4v1660473650603!5m2!1siw!2sil"
width="800" height="600" style="border:0;" allowfullscreen="" loading="lazy"
referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
</section>
</body>
</html>