-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
113 lines (111 loc) · 5.16 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
<!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="Stylehome-css/Stylehome.css" type="text/css">
<script src="https://kit.fontawesome.com/6c2293fe76.js" crossorigin="anonymous"></script>
<link href="Shrikhand/Shrikhand-Regular.ttf" rel="stylesheet">
<title>Homepage</title>
</head>
<body>
<div class="loader-container">
<div class="loader"></div>
</div>
<img class="logo" src="images/logo/ohmyfood.png" alt="ohmyfood logo">
<header>
<div class="head-container">
<div class="header">
<p class="address"><button class="location-btn"><i class="fas fa-map-marker-alt"></i></button>Paris,
Belleville</p>
<h2>Book the menu you like</h2>
<h5>Discover top-of-the-art restaurants we <br>picked for you</h5>
<button class="header-button">Explore our restaurants</button>
</div>
<h3 class="button-head">How it works </h3>
<div class="choose-restaurant">
<p class="choose"><button class="one">1</button><button class="mobile-btn"><i
class="fas fa-mobile-alt"></i></button><b>Choose a restaurant</b></p>
</div>
<div class="menu-creat">
<p class="creat"><button class="two">2</button><button class="creat-btn"><i
class="fas fa-bars"></i></button><b>Create your menu</b></p>
</div>
<div class="go-enjoy">
<p class="enjoy"><button class="three">3</button><button class="enjoy-btn"><i
class="fas fa-store"></i></button><b>Go enjoy it at the restaurant</b></p>
</div>
</div>
</header>
<main>
<div class="container-restaurant">
<h3 class="container-heading">Restaurants</h3>
<div class="container-card">
<a href="Bistalle.html"><img class="container-image"
src="images/restaurants/jay-wennington-N_Y88TWmGwA-unsplash.jpg" alt="Bistalle Menu"></a>
<div class="btn">
<button class="new-btn">New</button>
</div>
<div class="card-caption">
<h3 class="caption-heading">The Full Palette</h3>
<p class="caption-para">New York</p>
</div>
<div class="heart-icon">
<i class="far fa-heart fa-2x empty-heart"></i>
<i class="fas fa-heart fa-2x full-heart"></i>
</div>
</div>
<div class="container-card">
<a href="Enchanted.html"><img class="container-image"
src="images/restaurants/stil-u2Lp8tXIcjw-unsplash.jpg" alt="Enchanted Menu"></a>
<div class="btn">
<button class="new-btn">New</button>
</div>
<div class="card-caption">
<h3 class="caption-heading">The Enchented Plate</h3>
<p class="caption-para">New York</p>
</div>
<div class="heart-icon">
<i class="far fa-heart fa-2x empty-heart"></i>
<i class="fas fa-heart fa-2x full-heart"></i>
</div>
</div>
<div class="container-card">
<a href="Fullpalette.html"><img class="container-image"
src="images/restaurants/toa-heftiba-DQKerTsQwi0-unsplash.jpg" alt="Fullpalette"></a>
<div class="card-caption1">
<h3 class="caption-heading">The Bastille</h3>
<p class="caption-para">New York</p>
</div>
<div class="heart-icon">
<i class="far fa-heart fa-2x empty-heart"></i>
<i class="fas fa-heart fa-2x full-heart"></i>
</div>
</div>
<div class="container-card">
<a href="Gourmand.html"><img class="container-image"
src="images/restaurants/louis-hansel-shotsoflouis-qNBGVyOCY8Q-unsplash.jpg" alt="Gourmand "></a>
<div class="card-caption1">
<h3 class="caption-heading">Le Gourmand</h3>
<p class="caption-para">New York</p>
</div>
<div class="heart-icon">
<i class="far fa-heart fa-2x empty-heart"></i>
<i class="fas fa-heart fa-2x full-heart"></i>
</div>
</div>
</div>
</main>
<footer>
<div class="footer">
<h1><b>ohmyfood</b></h1>
<p class="footer-text">
<i class="fas fa-utensils"></i> Suggest a restaurant<br><i
class="fas fa-hands-helping"></i> Become a partner<br>Legal<br><a
class="contact-email" href="mailto:[email protected]"> Contact</a>
</p>
</div>
</footer>
</body>
</html>