-
Notifications
You must be signed in to change notification settings - Fork 0
/
booking.html
200 lines (186 loc) · 9.74 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="Boardwalk Games, your ultimate gaming retreat! Perfect for casual gamers, enthusiasts, and student gatherings. Visit us for your next adventure in board gaming">
<title>Boardwalk Games | Booking inquiry</title>
<!-- favicons generated by favicon.io -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/images/favicon-16x16.png">
<!-- Bootstrap 5 CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<!-- classes on body set to work with mt-auto on footer to
ensure it always stays at the bottom of the page -->
<body class="d-flex flex-column min-vh-100">
<!-- Navigation -->
<nav id="navbar" class="navbar navbar-expand-lg fixed-top" data-bs-theme="dark">
<div class="container">
<a class="navbar-brand" href="index.html">
<img src="assets/images/logo-sm-white.png" alt="Boardwalk Games logo" class="logo">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#services">Services</a>
</li>
<li class="nav-item">
<a href="index.html#events" class="nav-link">Events</a>
</li>
<li class="nav-item">
<a class="nav-link" href="game-library.html">Games</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#contact">Contact</a>
</li>
<li class="nav-item">
<a href="booking.html" class="btn custom-button-filled ms-lg-3" aria-current="page">Book now</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- header section -->
<header id="header" class="container section">
<div class="row justify-content-center">
<div class="col-12 col-md-8 text-center text-xl-start">
<h1 class="display-3">Boardwalk Games</h1>
<p class="my-4">
Thank you for choosing to reserve a spot at Boardwalk Games! Please
fill out the form below with your details and preferred event. A
member of our team will call you back as soon as possible to confirm
your booking and answer any questions you may have.
</p>
</div>
</div>
</header>
<main>
<!-- Booking inquiry form section -->
<section id="booking-form" class="container section">
<div class="row justify-content-center">
<div class="col-12 col-md-8">
<h2>Booking inquiry</h2>
<form action="success.html" method="GET">
<div class="row">
<div class="col-12 col-lg-6 mb-3">
<label for="name" class="form-label">Name</label>
<input class="form-control" id="name" name="name" type="text" required>
</div>
<div class="col-12 col-lg-6 mb-3">
<label for="email" class="form-label">Email</label>
<input class="form-control" id="email" name="email" type="email" required>
</div>
<div class="col-12 col-lg-6 mb-3">
<label for="phone" class="form-label">Phone number</label>
<input class="form-control" id="phone" name="phone" type="number" required>
</div>
<div class="col-12 col-lg-6 mb-3">
<label for="event-type" class="form-label">Event type</label>
<select id="event-type" class="form-select" name="event-type" required>
<option value="" selected>Select</option>
<option value="regular-play">Reserve a table</option>
<option value="dnd">Dungeons & Dragons</option>
<option value="retro-night">Retro Game Night</option>
<option value="tournament">Tournament</option>
<option value="kids-party">Kids party</option>
</select>
</div>
<div class="col-12 mb-3">
<label for="message" class="form-label">Message</label>
<textarea class="form-control" rows="6" id="message" name="message" required></textarea>
</div>
</div>
<button type="submit" class="btn custom-button-outline mb-4">Submit</button>
</form>
</div>
</div>
</section>
</main>
<!-- footer / contact section -->
<!-- mt-auto added to push footer to the bottom of the page -->
<footer id="contact" class="mt-auto">
<div class="container section">
<div class="row justify-content-center">
<div class="col-12 text-center">
<h2 class="display-6">Contact us!</h2>
</div>
<!-- Contact info -->
<div class="col-12 col-md-6 col-xl-4">
<h3 class="sub-heading-color">Contact info</h3>
<address>
<strong><i class="fa-solid fa-location-dot"></i> Boardwalk Games</strong><br>
123 Boardwalk<br>
Boardwalk City, 12345
</address>
<p><i class="fa-solid fa-phone"></i> 012 345 6789<br>
<i class="fa-regular fa-paper-plane"></i> [email protected]
</p>
<div class="social-links my-4">
<a href="https://www.instagram.com" target="_blank"
aria-label="Visit our Instagram page (opens in a new tab)" rel="noopener"><i
class="fa-brands fa-instagram"></i></a>
<a href="https://www.facebook.com" target="_blank"
aria-label="Visit our Facebook page (opens in a new tab)" rel="noopener"><i
class="fa-brands fa-square-facebook"></i></a>
<a href="https://www.x.com" target="_blank" aria-label="Visit our X feed (opens in a new tab)"
rel="noopener"><i class="fa-brands fa-x-twitter"></i></a>
</div>
</div>
<!-- Opening times -->
<div class="col-12 col-md-6 col-xl-4">
<h3 class="sub-heading-color">Opening times</h3>
<table class="table table-dark">
<thead>
<tr>
<th scope="col">Day</th>
<th scope="col">Open</th>
<th scope="col">Close</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Mon</th>
<td colspan="2">Closed</td>
</tr>
<tr>
<th scope="row">Tue - Thur</th>
<td>11am</td>
<td>11pm</td>
</tr>
<tr>
<th scope="row">Fri - Sat</th>
<td>11am</td>
<td>12am</td>
</tr>
<tr>
<th scope="row">Sun</th>
<td>12pm</td>
<td>7pm</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</footer>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous">
</script>
<!-- Font Awesome kit -->
<script src="https://kit.fontawesome.com/aa9af45995.js" crossorigin="anonymous"></script>
</body>
</html>