-
Notifications
You must be signed in to change notification settings - Fork 0
/
booking.html
34 lines (30 loc) · 822 Bytes
/
booking.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My booking</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header id="banner">
<a href= './index.html' id="logo">Tickethack</a>
<div class="btn">
<a href="./cart.html" id="cart-btn">Cart</a>
<a href='./booking.html' id="booking-btn">Booking</a>
</div>
</header>
<div class="content">
<div class="text">
<div class="start-box">
<p>No booking yet.</p>
<p>Why not plan a trip ?</p>
</div>
</div>
</div>
<script src="
https://cdn.jsdelivr.net/npm/[email protected]/moment.min.js
"></script>
<script src="bookingpage.js"></script>
</body>
</html>