-
Notifications
You must be signed in to change notification settings - Fork 0
/
locations.html
56 lines (50 loc) · 2.06 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
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/locations.css">
<link rel="stylesheet" href="css/mediaqueries/mediaqueries.css">
<link rel="stylesheet" href="css/mediaqueries/locationsMediaQueries.css">
<title>Vores lokationer - BikeShare</title>
</head>
<body id="body">
<header>
<div class="inner-header">
<div class="logoContainer">
<img class="logo" src="images/logo.png" alt="Logo">
<a href="index.html">
<p class="title">BikeShare</p>
</a>
</div>
<div class="pc-header">
<ul class="navigationList">
<li class="navigationLi"><a href="index.html">Forside</a></li>
<li class="navigationLi"><a href="contact.html">Kontakt</a></li>
<li class="navigationLi"><a href="faq.html">FAQ</a></li>
<li class="navigationLi"><a href="myProfile.html">Min profil</a></li>
</ul>
</div>
</div>
</header>
<div id="top">
<h1>Lej en cykel</h1>
<h5>Find den nærmeste udlejer</h5>
</div>
<div id="mapContainer">
<!--The div element for the map -->
<div id="map"></div>
<div id="shopInfo"></div>
</div>
<!-- Async script executes immediately and must be after any DOM elements used in callback. -->
</body>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="https://unpkg.com/@googlemaps/markerclustererplus/dist/index.min.js"></script>
<script src="javascript/main.js"></script>
<script src="javascript/locations.js"></script>
<script
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCKOqKObTh0OqKcHyFiq19fNiIWW9PyLWg&callback=initMap&libraries=&v=weekly"
async></script>
</html>