-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbook-a-table.html
172 lines (172 loc) · 5.91 KB
/
book-a-table.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Welcome to our Bookning site for a table at Johnie's Restaurant in the heart of the London."
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Reenie+Beanie&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles/book-style.css" />
<link rel="stylesheet" href="styles/book-media-queries.css" />
<title>Johnie's | Book a Table</title>
<link rel="icon" type="image/x-icon" href="img/logo-middle.png" />
</head>
<body>
<!--######## HEADER SECTION ########-->
<header class="header">
<nav class="nav-main">
<ul class="nav-list">
<li><a href="index.html" class="nav-link">Home</a></li>
<li><a href="lunch.html" class="nav-link">Lunch</a></li>
<li><a href="carte.html" class="nav-link">A'la Carte</a></li>
<li>
<a href="find-us.html" class="nav-link">Find us</a>
</li>
<li class="current-link">
<p class="cta-btn p-link">Book a Table</p>
</li>
</ul>
</nav>
<h1 class="hero-title">Book a Table</h1>
</header>
<!--####### MAIN SECTION #######-->
<main class="section">
<section class="container">
<!--#### Picture part ######-->
<div class="bild-box">
<img
src="img/reserved.webp"
alt="Picture of reserved table at a restaurant."
/>
</div>
<!--##### Form part #####-->
<div class="form-box">
<h2 class="title">Enter your details</h2>
<div class="form-container">
<form class="cta-form" action="#">
<div>
<label for="full-name">Full Name*</label>
<input
id="full-name"
type="text"
placeholder="John Addams"
required
/>
</div>
<div>
<label for="email">Email Adress*</label>
<input
id="email"
type="email"
placeholder="[email protected]"
required
/>
</div>
<div>
<label for="phone">Phone Number*</label>
<input
id="phone"
type="tel"
placeholder="07700 900410"
required
/>
</div>
<div>
<label for="select-bookning">Select Bookning*</label>
<input id="select-bookning" type="datetime-local" required />
</div>
<p class="fields">All fields are mendatory.</p>
<button class="button">Book now</button>
</form>
</div>
</div>
</section>
</main>
<!--##### Footer section #####-->
<footer class="footer-section">
<div class="footer-container">
<div class="social-box">
<div class="logo-box">
<img src="img/logo_crop_dark.png" alt="Logo" class="logo-img" />
</div>
<div class="social-icons-box">
<div class="footer-social-icons">
<a href="https://www.facebook.com/ntiskolan/" target="_blank"
><ion-icon
name="logo-facebook"
class="footer-social-icon"
></ion-icon
></a>
<a href="https://www.instagram.com/ntiskolan/" target="_blank"
><ion-icon
name="logo-instagram"
class="footer-social-icon"
></ion-icon
></a>
<a href="https://twitter.com/ntigymnasiet" target="_blank"
><ion-icon
name="logo-twitter"
class="footer-social-icon"
></ion-icon
></a>
</div>
</div>
</div>
<div class="second-box">
<div class="footer-box">
<h1 class="footer-header">Opening hours:</h1>
<p class="footer-text">Monday - Thursday : 2 PM - 8 PM</p>
<p class="footer-text">Friday - Sunday : 2 PM - 10 PM</p>
</div>
<div class="footer-box">
<h1 class="footer-header">Our menus:</h1>
<p class="footer-text">
<a href="lunch.html" class="footer-link">Lunch Menu</a>
</p>
<p class="footer-text">
<a href="carte.html" class="footer-link">A'la Carte Menu</a>
</p>
</div>
</div>
<div class="find-us-box">
<h1 class="footer-header">Find us:</h1>
<p class="footer-text">
9407 Queens Road <br />
London <br />
E61 0QN
</p>
<a href="find-us.html" class="button-find-us">Find us</a>
</div>
<p class="copyright">Copyright by Izabela Marcinkowska 2023</p>
</div>
<a href="#" class="scroll-to-top">
<ion-icon name="arrow-up"></ion-icon>
</a>
</footer>
<script
type="module"
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"
></script>
<script
nomodule
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"
></script>
<script src="js/main.js"></script>
</body>
</html>