-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbook.html
37 lines (34 loc) · 967 Bytes
/
book.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Dunedin Car Rentals</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="Resources/Libraries/jquery-3.5.1.min.js"></script>
<script src="book.js"></script>
</head>
<body>
<main>
<header>
<h1>Dunedin Car Rentals</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li>Make a booking</li>
<li><a href="locations.html">Locations</a></li>
</ul>
</nav>
</header>
<section>
<h2>Make a booking</h2>
<div id="createBooking"></div>
</section>
<footer>
<ul>
<li><strong>© Dunedin Car Rentals</strong></li>
<li><a href="admin.html">Staff Login</a></li>
</ul>
</footer>
</main>
</body>
</html>