-
Notifications
You must be signed in to change notification settings - Fork 1
/
book.html
153 lines (150 loc) · 8.36 KB
/
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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>The Monkees|Book Us</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" type="text/css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="assets/css/style.css" type="text/css" />
</head>
<body>
<header>
<div class="container-fluid">
<div class="row">
<div class="header-bg col-sm-12">
<div class="container-fluid">
<div class="col-sm-10 col-sm-offset-1 col-md-9 col-md-offset-2 header-heading">
<div class="col-sm-3 hidden-xs">
<img class="side-image" src="assets/images/disco-ball.png" alt="Disco Ball">
</div>
<div class="col-sm-6">
<img class="logo" src="assets/images/monkees-header.png" alt="Monkees">
</div>
<div class="col-sm-3 hidden-xs">
<img class="side-image" src="assets/images/disco-ball.png" alt="Disco Ball">
</div>
</div>
</div>
<div class="row vertical-bar">
<nav>
<div>
<ul>
<li class="col-xs-6 col-sm-6 menu-item bg-home">
<a href="index.html"><i class="fa fa-home"></i><span>Home</span></a>
</li>
<li class="col-xs-6 col-sm-6 menu-item bg-listen">
<a href="listen.html"><i class="fa fa-music"></i><span>Listen</span></a>
</li>
<li class="col-xs-4 col-sm-4 menu-item bg-watch">
<a href="watch.html"><i class="fa fa-film"></i><span>Watch</span></a>
</li>
<li class="col-xs-4 col-sm-4 menu-item bg-book">
<a href="book.html"><i class="fa fa-calendar"></i><span>Book Us</span></a>
</li>
<li class="col-xs-4 col-sm-4 menu-item bg-about">
<a href="about.html"><i class="fa fa-question-circle-o"></i><span>About Us</span></a>
</li>
<li class="hidden-xs hidden-sm col-sm-4 menu-item-break bg-break">
</li>
</ul>
</div>
</nav>
</div>
<div class="container-fluid">
<div class="row col-sm-10 col-sm-offset-1 col-md-9 col-md-offset-2 main-image-bg">
<img class="main-image" src="assets/images/booking.jpg" alt="Booking">
</div>
</div>
</div>
</div>
</div>
</header>
<section class="bg-section">
<div class="container-fluid booking-section">
<div class="row col-md-9 col-md-offset-2">
<h1 class="section-header text-center"><i class="fa fa-calendar"></i> Book Us
<hr class="hr-adjust">
</h1>
</div>
<div class="row col-md-9 col-md-offset-2">
<h3 class="booking-enquiry text-center">Please use the form below if you are interested in booking us for your event</h3>
</div>
<form class="form-style col-sm-10 col-sm-offset-1 col-md-9 col-md-offset-2">
<div class="form-group">
<label for="FirstName">First Name</label>
<input type="text" class="form-control" id="firstname" placeholder="First Name" required>
</div>
<div class="form-group">
<label for="LastName">Surname</label>
<input type="text" class="form-control" id="lastname" placeholder="Surname" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" class="form-control" id="email" placeholder="e.g. [email protected]" required>
</div>
<div class="form-group">
<label for="number">Number</label>
<input type="tel" class="form-control" id="number" minlength="11" maxlength="11" placeholder="e.g. 07123456789">
</div>
<div class="form-group form-fix col-sm-6">
<label for="date">Date</label>
<input type="date" class="form-control" id="date" required>
</div>
<div class="form-group">
<label for="time">Starting time</label>
<input type="time" class="form-control form-half" id="time" required>
</div>
<div class="form-group form-fix col-sm-6">
<label for="event">Type of Event</label>
<select list="event" class="form-control" id="event" required>
<option selected disabled>Please choose below</option>
<option value="Wedding">Wedding</option>
<option value="Birthday">Birthday</option>
<option value="Christmas Party">Christmas Party</option>
<option value="News Year's Party">News Year's Party</option>
<option value="School Reunion">School Reunion</option>
<option value="Charity">Charity</option>
<option value="Other">Other</option>
</select>
</div>
<div class="form-group">
<label for="other">If other, please state:</label>
<input type="text" class="form-control form-half" id="EventOther" placeholder="Other">
</div>
<div class="checkbox">
<label>
<input type="checkbox" id="check" checked class="checkbox"> Keep me up to date with Monkees News!
</label>
</div>
<button type="submit" class="btn">Send Enquiry</button>
</form>
<div class="row col-sm-12 col-md-9 col-md-offset-2">
<h4 class="booking-enquiry text-center">Thanks for your enquiry, we'll get back to you as soon as we can!</h4>
</div>
</div>
</section>
<footer class="footer container-fluid">
<div class="row row-table text-center">
<div class="col-md-4 col-md-offset-1 col-sm-5">
<h5>About us</h5>
<p>1960s rock band with over 50 years experience performing globally. Available to book for weddings, Christmas parties and other events</p>
</div>
<div class="footer-border col-sm-3">
<h5>Interested in booking us?</h5>
<p>Click <a href="book.html">here</a> to enquire</p>
</div>
<div class="footer-border col-sm-4">
<h5>Follow us!</h5>
<ul class="list-inline social-links">
<li><a target="_blank" href="https://www.facebook.com/TheMonkees"><i class="fa fa-facebook" aria-hidden=true></i></a></li>
<li><a target="_blank" href="https://twitter.com/TheMonkees"><i class="fa fa-twitter" aria-hidden=true></i></a></li>
<li><a target="_blank" href="https://www.youtube.com/user/themonkees"><i class="fa fa-youtube" aria-hidden=true></i></a></li>
<li><a target="_blank" href="https://open.spotify.com/artist/320EPCSEezHt1rtbfwH6Ck"><i class="fa fa-spotify" aria-hidden=true></i></a></li>
</ul>
</div>
</div>
</footer>
</body>
</html>