-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
165 lines (160 loc) · 5.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Shrikhand&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;500&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" type="text/css" href="css/style.min.css" />
<title>ohmyfood | top-of-the-art restaurants</title>
</head>
<body class="body">
<!-- loading spinner -->
<div class="spin">
<div class="spin__items">
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
</div>
</div>
<!-- logo -->
<header class="header">
<img
class="header__img"
src="images/logo/ohmyfood@2x.svg"
alt="ohmyfood logo in the header"
/>
</header>
<!-- location, explore restaurants - how it works - overview restaurants -->
<main class="main">
<!-- location and explore restaurants -->
<section class="location">
<!-- <i class="fas fa-map-marker-alt"></i> -->
<h3 class="h3 location__name">
<i class="fas fa-map-marker-alt location__icon"></i>Paris, Belleville
</h3>
</section>
<section class="intro">
<h1 class="intro__headline">Book the menu you like</h1>
<p class="intro__paragraph">
Discover top-of-the-art restaurants we picked for you
</p>
<button class="btn btn__p--bold">Explore our restaurants</button>
</section>
<!-- how it works -->
<section class="how-to">
<h2 class="how-to__headline">How it works</h2>
<div class="how-to__flex-wrapper">
<div class="how-to__steps">
<div class="how-to__steps--num">
<p>1</p>
</div>
<div class="how-to__step">
<i class="fas fa-mobile-alt fa-fw how-to__step--icon"></i>
<p>Choose a restaurant</p>
</div>
</div>
<div class="how-to__steps">
<div class="how-to__steps--num">
<p>2</p>
</div>
<div class="how-to__step">
<i class="fas fa-list-ul fa-fw how-to__step--icon"></i>
<p>Create your menu</p>
</div>
</div>
<div class="how-to__steps">
<div class="how-to__steps--num">
<p>3</p>
</div>
<div class="how-to__step how-to__step--highlighted">
<i class="fas fa-store fa-fw how-to__step--icon"></i>
<p>Go enjoy it at the restaurant</p>
</div>
</div>
</div>
</section>
<!-- overview restaurants -->
<section class="restaurants">
<h2 class="restaurants__headline">Restaurants</h2>
<div class="restaurants__flex-wrapper">
<div class="restaurant">
<a class="anchor" href="menus/the-full-palette.html">
<div class="restaurant__img restaurant__img--1">
<span class="restaurant__new--label">New</span>
</div>
<div class="flex-wrapper">
<div class="restaurant__description">
<p class="restaurant__description--name">The Full Palette</p>
<p class="restaurant__description--location">New York</p>
</div>
<div>
<i class="fas fa-heart fill"></i>
</div>
</div>
</a>
</div>
<div class="restaurant">
<a class="anchor" href="menus/the-enchanted-plate.html">
<div class="restaurant__img restaurant__img--2">
<span class="restaurant__new--label">New</span>
</div>
<div class="flex-wrapper">
<div class="restaurant__description">
<p class="restaurant__description--name">
The Enchanted Plate
</p>
<p class="restaurant__description--location">New York</p>
</div>
<i class="fas fa-heart"></i>
</div>
</a>
</div>
<div class="restaurant">
<a class="anchor" href="menus/bastille.html">
<div class="restaurant__img restaurant__img--3"></div>
<div class="flex-wrapper">
<div class="restaurant__description">
<p class="restaurant__description--name">Bastille</p>
<p class="restaurant__description--location">New York</p>
</div>
<i class="fas fa-heart"></i>
</div>
</a>
</div>
<div class="restaurant">
<a class="anchor" href="menus/le-gourmand.html">
<div class="restaurant__img restaurant__img--4"></div>
<div class="flex-wrapper">
<div class="restaurant__description">
<p class="restaurant__description--name">Le Gourmand</p>
<p class="restaurant__description--location">New York</p>
</div>
<i class="fas fa-heart"></i>
</div>
</a>
</div>
</div>
</section>
</main>
<!-- footer -->
<footer class="footer">
<p class="footer__logo">ohmyfood</p>
<p class="footer__link footer__link--1">Suggest a restaurant</p>
<p class="footer__link footer__link--2">Become a partner</p>
<p class="footer__link">Legal</p>
<p class="footer__link">
<a class="footer__link--mailto" href="mailto:info@ohmyfood.com"
>Contact</a
>
</p>
</footer>
</body>
</html>