generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
367 lines (346 loc) · 19.2 KB
/
index.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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Stef's Recipes</title>
<link rel="shortcut icon" href="favicon.ico" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.6.1/css/all.css"
integrity="sha384-gfdkjb5BdAXd+lj+gudLWI+BXq4IuLW5IT+brZEZsLFm++aCMlF1V92rMkPaX4PP"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="assets/css/style.css" type="text/css" />
</head>
<body>
<!-- Navigation -->
<!-- Code for navbar taken from Whiskey Drop website lesson, also found in
https://getbootstrap.com/docs/4.5/components/navbar/#nav and modified to fit project needs -->
<nav class="navbar navbar-dark bg-dark navbar-expand-sm fixed-top">
<a href="#home" class="navbar-brand">
<img class="nav-logo" src="assets/images/logo.png" alt="Logo" />
</a>
<button
class="navbar-toggler ml-auto"
type="button"
data-toggle="collapse"
data-target="#navbarBtnCollapse"
aria-controls="navbarBtnCollapse"
aria-expanded="false"
aria-label="Toggle-navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarBtnCollapse">
<ul class="navbar-nav ml-auto">
<li class="active nav-item ml-2">
<a class="nav-link" href="#home">Home</a>
</li>
<li class="nav-item ml-2">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item ml-2">
<a class="nav-link" href="#recipes">Recipes</a>
</li>
<li class="nav-item ml-2">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</nav>
<!-- Navigation -->
<!-- Landing Page -->
<div id="home" class="container-fluid container-landing">
<div class="row">
<div class="col-12">
<section class="landing jumbotron text-center">
<h1 class="jumbotron-heading">Welcome</h1>
<hr class="block-divider block-divider-heading text-center" />
<p class="lead">
Looking for something tasty?<br />
Then, this is the right place for you!
</p>
<a class="btn btn-landing btn-lg" href="#recipes" role="button">Let's get cooking!</a>
</section>
</div>
</div>
</div>
<!-- Landing Page End -->
<!-- About Section -->
<div id="about" class="container-fluid container-about text-center">
<section class="about-section">
<div class="row">
<div class="col-12 about-heading text-center">
<h2 class="text-uppercase">About<i class="fas fa-info-circle"></i></h2>
<hr class="block-divider block-divider-about" />
</div>
</div>
<div class="about-content-wrapper">
<div class="row">
<div class="col-12 col-sm-12 col-md-12 d-md-block col-lg-6 col-xl-5">
<div class="about-text">
<p>
Everyone loves homemade food. Sometimes it's difficult to decide what to cook and where to get the recipe for it.
Our goal is to help you by presenting few recipes which are really tasty and easy to make. We hope to inspire you
to try something new at home and share with falmily and friends. Because the magic of homemade food can bring us
all together!
</p>
</div>
</div>
<div id="about-image-padding" class="col-12 col-sm-12 col-md-12 d-md-block col-lg-6 col-xl-7">
<div class="about-image">
<img src="assets/images/pasta.jpg" alt="pasta" />
</div>
</div>
</div>
</div>
</section>
</div>
<!-- About Section End -->
<!-- Recipes Section -->
<div id="recipes" class="container-fluid container-recipes">
<section class="recipes-section">
<div class="row">
<div class="col-12 recipes-heading text-center">
<h2 class="text-uppercase">Recipes <i class="fas fa-utensils"></i></h2>
<hr class="block-divider block-divider-recipes" />
</div>
</div>
<div class="recipes-content-wrapper">
<div class="row">
<div class="col-12 col-sm-12 col-md-12 d-md-block col-lg-7">
<div class="recipe-name-container">
<h3 class="recipe-name">Salmon Salad</h3>
</div>
<div class="recipes-image">
<img src="assets/images/salad.jpg" alt="Salad" />
</div>
</div>
<div class="col-12 col-sm-12 col-md-12 d-md-block col-lg-5">
<div class="ingredients-heading">
<h4>Ingredients</h4>
<hr class="block-divider block-divider-ingredients" />
</div>
<div class="igredients-list">
<ul>
<li>400g Smoked Salmon</li>
<li>1 Oak Leaf Salad</li>
<li>1 Radicchio Salad</li>
<li>200g Rocket Salad</li>
<li>350g Cherry Tomatoes</li>
<li>300g Fusilli Pasta</li>
<li>3tbsp Olive Oil + Extra for the Pasta</li>
<li>Salt</li>
<li>Black Pepper</li>
<li>1/2 Lemon</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-12 method-container">
<div class="method-heading">
<h4>Method</h4>
<hr class="block-divider block-divider-method" />
</div>
<div class="method">
<p>
First, get a meduim size pot and fill with water and put to boil. Once the water starts to boil, add 1tbsp
salt, 2tbsp Olive Oil and then add the pasta. Leave to boil for 9 min and stir every 3 min.<br />
Once that's boiling, start washing your salad. Then get a big bowl and start breaking into pieces the Oak Leaf
and Radicchio. Add the rocket. Slice the tomatoes in half and add them as well.<br />
Once pasta is ready cool down under cold water and add to the bowl. Season with salt and pepper to taste, add
the olive oil and the juice from half lemon. Mix gently and then add the salmon. Mix agian gently.<br />
Enjoy!
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-sm-12 col-md-12 d-md-block col-lg-7">
<div class="recipe-name-container">
<h3 class="recipe-name">Pepperoni Pizza</h3>
</div>
<div class="recipes-image">
<img src="assets/images/pizza.jpg" alt="Pizza" />
</div>
</div>
<div class="col-12 col-sm-12 col-md-12 d-md-block col-lg-5">
<div class="ingredients-heading">
<h4>Ingredients</h4>
<hr class="block-divider block-divider-ingredients" />
</div>
<div class="igredients-list">
<ul>
<li>900g Strong Flour</li>
<li>500ml Water</li>
<li>7g Dry Yeast</li>
<li>4tsp Salt</li>
<li>2tbsp Olive oil + extra for drizzling</li>
<li>400g Chopped Tomatoes</li>
<li>300g Buffalo Mozarella</li>
<li>100g Pepperoni</li>
<li>Basil</li>
<li>1tbsp Fresh Oregano</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-12 method-container">
<div class="method-heading">
<h4>Method</h4>
<hr class="block-divider block-divider-method" />
</div>
<div class="method">
<p>
First, mix the yeast with 500ml lukewarm water and leave for 10 min. Then add the flour to large mixing bowl,
mix in the salt and add the yeast and water mix. Gently mix the ingredients until everything is combined.<br />
Then start kneeding the dough until it's soft and not sticky anymore (aprox 10 min). Once your dough is ready,
divide it into 220g balls, cover with damp cloth and leave for 2 hours.<br />
Then prepare your tomato sauce by adding the Chopped tomatoes, 1tbsp Olive oil and oregano in a blender, and
season to taste.<br />
After 2 hours start stretching the dough, add 2-3tbsp tomato sauce and spread.Then add the Mozzarella by
breaking it and spread all over. Once that's done, add the Pepperoni, drizzle with a bit of Olive oil and bake
for 10-12 min on 200 degrees C. Last, add few basil leaves.<br />
Enjoy!
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-sm-12 col-md-12 d-md-block col-lg-7">
<div class="recipe-name-container">
<h3 class="recipe-name">Cheese Cake</h3>
</div>
<div class="recipes-image">
<img src="assets/images/cheese-cake.jpg" alt="Pizza" />
</div>
</div>
<div class="col-12 col-sm-12 col-md-12 d-md-block col-lg-5">
<div class="ingredients-heading">
<h4>Ingredients</h4>
<hr class="block-divider block-divider-ingredients" />
</div>
<div class="igredients-list">
<ul>
<li>200g Plain Biscuits</li>
<li>80g Unsalted Butter</li>
<li>750g Philadelphia Cheese</li>
<li>150g Mascarpone</li>
<li>200g Icing Sugar</li>
<li>1 Vanilla Pod</li>
<li>4 Egg Yolks</li>
<li>1 Egg</li>
<li>50g Blueberries/Raspberries</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-12 method-container">
<div class="method-heading">
<h4>Method</h4>
<hr class="block-divider block-divider-method" />
</div>
<div class="method">
<p>
First, preheat the oven to 150 degrees C. Using a food processor, crush the biscuits. Then add the butter and
run the processor again.<br />
Transfer the crushed biscuits into a cheese cake form. Spred evenly and press down to the bottom of the form.
Leave in fridge for 10 min.<br />
Then add Philadelphia cheese, icing sugar and Mascarpone to the processor. Run it again until everything is
mxied.<br />
Then start to add the eggs slowly, one at a time, while the preocessor is runnig. Add the vanilla. Make sure
everything is mixed and transfer into the form.<br />
Spread evenly and put into oven to bake for 30-40 min. When ready, cool down and slice. Decorate with fresh
fruits.<br />
Enjoy!
</p>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<!-- Recipes Section End -->
<!-- Contact Section -->
<div id="contact" class="container-fluid container-contact">
<section class="contact">
<div class="row">
<div class="col-12 contact-heading text-center">
<h2 class="text-uppercase">Contact <i class="far fa-comment-dots"></i></h2>
<hr class="block-divider block-divider-contact" />
</div>
</div>
<div class="row">
<div class="col">
<div class="contact-text-container text-center">
<h3 class="text-uppercase">Have a recipe in mind?</h3>
<p>or</p>
<h4>Something you'd like to share?</h4>
<br />
<h4>We'd love to hear from you!</h4>
</div>
<div class="form-container">
<form>
<label for="fname">First Name:</label>
<input type="text" class="form-control" id="fname" placeholder="First Name" required />
<label for="lname">Last Name:</label>
<input type="text" class="form-control" id="lname" placeholder="Last Name" required />
<label for="email">Email:</label>
<input type="email" class="form-control" id="email" placeholder="Email Address" required />
<br />
<textarea class="form-control" name="message" id="message" rows="5" placeholder="Leave a message here"></textarea>
<div class="text-center">
<button class="btn btn-contact" type="submit">Submit</button>
</div>
</form>
</div>
</div>
</div>
</section>
</div>
<!-- Contact Section End -->
<!-- Footer -->
<footer>
<div class="social-links">
<a href="https://www.facebook.com/" target="_blank"
><i class="fab fa-facebook" aria-hidden="true"></i><span class="sr-only">Facebook</span></a
>
<a href="https://www.instagram.com/" target="_blank"
><i class="fab fa-instagram" aria-hidden="true"></i><span class="sr-only">Instagram</span></a
>
<a href="https://twitter.com/" target="_blank"
><i class="fab fa-twitter" aria-hidden="true"></i><span class="sr-only">Twitter</span></a
>
<a href="https://www.pinterest.co.uk/" target="_blank"
><i class="fab fa-pinterest-square" aria-hidden="true"></i><span class="sr-only">Pinterest</span></a
>
</div>
</footer>
<!-- Footer End -->
<script
src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-w1Q4orYjBQndcko6MimVbzY0tgp4pWB4lZ7lr30WKz0vr/aWKhXdBNmNb5D92v7s"
crossorigin="anonymous"
></script>
</body>
</html>