-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (102 loc) · 3.16 KB
/
Copy pathindex.html
File metadata and controls
112 lines (102 loc) · 3.16 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Lola's - Cookery School</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Header -->
<header class="clearfix ">
<h1 class="col-l">
<img src="./assets/lola-pink.svg" alt="logo">
</h1>
<nav class="col-r">
<a href="#about">about</a>
<a href="#food">food</a>
<a href="#location">location</a>
<a href="#contact">contact</a>
</nav>
</header>
<!-- Hero -->
<section class="hero">
<h2>Master the art of hand-crafted food</h2>
</section>
<!-- About -->
<section class="about">
<h3>
About
</h3>
<p>
So you want to dazzle your friends at a dinner party? Or treat yourself to some delicious grub? Don’t worry, we’ve got it covered. Lola’s is a cookery school in New York City, offering students the chance to learn to cook healthy, restaurant-quality food.
</p>
</section>
<!-- food -->
<section class="food clearfix">
<div class="food-text col-l">
<h3>Food</h3>
<p>
Whether you’re vegan, vegetarian, pescetarian, flexitarian, gluten-free, lactose intolerant, sugar-free or you eat just about anything, we have culinary classes for you! Specialist diet or not.
</p>
</div>
<img class="col-r" src="./assets/blue-bowl.jpg" alt="Blue bowl">
</section>
<!-- Quote -->
<section class="quote">
<blockquote>
<p>“My friends couldn’t believe I’d cooked such amazing food. I’ve just joined a supper club too!”</p>
</blockquote>
</section>
<!-- Gallery -->
<section class="gallery clearfix">
<img src="./assets/bowls.jpg" alt=" bowels">
<img src="./assets/vegetables.jpg" alt="vegetables">
<img src="./assets/macaroons.jpg" alt="pastel macaroons">
</section>
<!-- Find us -->
<section class="find-us clearfix">
<div class="where-to-find-us">
<h4>
Where to find us
</h4>
<p>
We’re located in the heart of Brooklyn. Come and say hi if you’re passing by!
</p>
</div>
<div>
<img src="./assets/map.svg" alt="map">
</div>
<div class="opening-hours">
<h4>
Opening Hours
</h4>
<p>
Tuesday – Thursday
<br>
11:00 – 20:00
</p>
<p>
Saturday – Sunday
<br>
10:00 – 18:00
</p>
</div>
</section>
<!-- Logos -->
<section class="logos">
<p>As loved by</p>
<img src="./assets/airbnb.svg" alt="airbnb">
<img src="./assets/forbes.svg" alt="forbes">
<img src="./assets/meetup.svg" alt="meetup">
<img src="./assets/nyt.svg" alt="the new york times">
</section>
<!-- Footer -->
<footer class="clearfix">
<div class="footer-logo col-l">
<img src="./assets/lola-green.svg" alt="lola's logo in pink">
</div>
<p class="col-r">Copyright © 2017</p>
</footer>
</body>
</html>