-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocations.html
More file actions
41 lines (38 loc) · 1.21 KB
/
locations.html
File metadata and controls
41 lines (38 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Dunedin Car Rentals</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="Resources/Libraries/leaflet/leaflet.css">
<script src="Resources/Libraries/jquery-3.5.1.min.js"></script>
<script src="Resources/Libraries/leaflet/leaflet.js"></script>
<script src="map.js"></script>
</head>
<body>
<main>
<header>
<h1>Dunedin Car Rentals</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="book.html">Make a booking</a></li>
<li>Locations</li>
</ul>
</nav>
</header>
<section>
<h2>Locations</h2>
<div id="map"></div>
<p>Our office is located at the Dunedin Holiday Park.</p>
<p>We are open Monday - Friday from 9am - 5pm</p>
</section>
<footer>
<ul>
<li><strong>© Dunedin Car Rentals</strong></li>
<li><a href="admin.html">Staff Login</a></li>
</ul>
</footer>
</main>
</body>
</html>