-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfindUs.html
More file actions
50 lines (47 loc) · 1.73 KB
/
Copy pathfindUs.html
File metadata and controls
50 lines (47 loc) · 1.73 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
<!DOCTYPE html>
<html>
<head>
<title>Find our store</title>
<link rel="stylesheet" href="style/style.css" type="text/css" />
<script src="http://maps.google.com/maps/api/js?key=AIzaSyBk9HedG95CparLs-trkeDTpSxIE0XYqyY"></script>
<script src="scripts/geopositioning.js"></script>
</head>
<body>
<header>
<div>
<a class="headerlogo" href="index.html">
<img src="images/logo.png" />
</a>
<span id="headername">Joe's Coffee Store</span>
<input type="search" class="searchbox" placeholder="Search our store" />
</div>
<nav class="backgroundgradient">
<ul>
<li><a class="navlink" href="index.html">Home</a></li>
<li><a class="navlink" href="blog.html">Blog</a></li>
<li><a class="navlink" href="allcoffees.html">Our coffees</a></li>
<li><a class="navlink" href="accessories.html">Accessories</a></li>
<li><a class="navlink" href="Gifts.html">Gifts</a></li>
<li><a class="navlink" href="findus.html">Find us</a></li>
<li><a class="navlink" href="checkout.html">Checkout</a></li>
</ul>
</nav>
</header>
<div id="welcomeimage">
<img src="images/coffeeheader.jpg" />
</div>
<div id="coffeeofthemonth">
<img src="images/cotm.jpg" />
</div>
<section class="maptostore">
<header class="blockheader">
<span> Come to our store today!</span>
</header>
<div id="map"></div>
<div id="driving-directions"></div>
</section>
<script>
document.addEventListener("DOMContentLoaded", createDrivingDirectionsMap, false);
</script>
</body>
</html>