-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
164 lines (161 loc) · 4.74 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
<!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" />
<link rel="stylesheet" href="./public/css/style.css" />
<script
src="https://kit.fontawesome.com/7f94446610.js"
crossorigin="anonymous"
></script>
<title>Ohmyfood</title>
</head>
<body class="home">
<div id="loader" class="bouncing-loader">
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
</div>
<!--Start nav-->
<nav>
<div class="container">
<img
class="logo"
src="./public/images/logo/ohmyfood.png"
alt="ohmyfood logo"
/>
<button>
<span></span>
</button>
<ul>
<li>
<a href="#main">How it works</a>
</li>
<li>
<a href="#restaurant">Restaurants</a>
</li>
<li>
<a href="mailto:[email protected]">Contact</a>
</li>
</ul>
</div>
</nav>
<!--Start header-->
<header>
<div class="hero">
<img
src="./public/images/restaurants/menu.jpg"
alt="restaurants menu"
/>
</div>
<div class="location">
<div class="location__city">
<i class="fa fa-map-marker-alt"></i>
<p>Paris, Belleville</p>
</div>
<div class="location__menu">
<h1>Book the menu you like</h1>
<h2>Discover top-of-the-arts restaurants we picked for you.</h2>
<button type="submit">Explore our restaurants</button>
</div>
</div>
</header>
<main id="main">
<h3>How it works</h3>
<div class="main__buttons">
<button>
<span> 1 </span> <i class="fas fa-mobile-alt"></i>Choose a restaurant
</button>
<button>
<span>2</span> <i class="fas fa-list"></i>Create your menu
</button>
<button>
<span>3</span><i class="fas fa-store"></i>Go enjoy it at the
restaurant
</button>
</div>
<div class="restaurants" id="restaurant">
<h3>Restaurants</h3>
<div class="cards">
<div class="card">
<a href="full-palette.html">
<img
src="./public/images/restaurants/fullpalete.jpg"
alt="full palete restaurant"
/>
<span>New</span>
</a>
<div class="card__details">
<h4>Full Palette</h4>
<h5>New York</h5>
</div>
<button class="card__heart">
<i class="far fa-heart fa-lg fa-2x"></i>
</button>
</div>
<div class="card">
<a href="the-enchanted-plate.html">
<img
src="./public/images/restaurants/enchanted.jpg"
alt="the enchanted restaurant"
/>
<span>New</span>
</a>
<div class="card__details">
<h4>The Enchanted Plate</h4>
<h5>New York</h5>
</div>
<button class="card__heart">
<i class="far fa-heart fa-lg fa-2x"></i>
</button>
</div>
<div class="card">
<a href="bastille.html">
<img
src="./public/images/restaurants/bastille.jpg"
alt="Bastille restaurant"
/>
</a>
<div class="card__details">
<h4>Bastille</h4>
<h5>New York</h5>
</div>
<button class="card__heart">
<i class="far fa-heart fa-lg fa-2x"></i>
</button>
</div>
<div class="card">
<a href="legourmand.html">
<img
src="./public/images/restaurants/legourmand.jpg"
alt="gourmand restaurant"
/>
</a>
<div class="card__details">
<h4>Le Gourmand</h4>
<h5>New York</h5>
</div>
<button class="card__heart">
<i class="far fa-heart fa-lg fa-2x"></i>
</button>
</div>
</div>
</div>
</main>
<footer class="footer">
<div class="info">
<h3>ohmyfood</h3>
<a href="#"
><i class="fas fa-utensils fa-1x"></i> Suggest a restaurant</a
>
<a href="#"
><i class="fas fa-hands-helping fa-xs"></i> Become a partner</a
>
<a href="#">Legal</a>
<a href="mailto:[email protected]">Contact</a>
</div>
</footer>
<script src="./public/js/app.js"></script>
</body>
</html>