-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (104 loc) · 3.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Foody</title>
</head>
<body>
<!-- Header -->
<header class="top-header">
<h1 class="logo">F<span class="highlight">oo</span>dy</h1>
<section class="top-header_content">
<div class="content">
<h1 class="main-headings">A Chef In Every Tasty Meal Box</h1>
<div class="btns">
<a href="#" class="main-btn-fill btn-animation">Select Program</a>
<a href="#" class="main-btn btn-animation">View Menu</a>
</div>
</div>
<img src="Images/image1.jpg" alt="Main Image" class="main-img" />
</section>
</header>
<section class="delivery">
<div class="delivery_img"></div>
<div class="delivery_content">
<div class="delivery_headings">We Deliver Anywhere</div>
<p class="delivery_sub-headings">
Each fresh meal is perfectly sized for 1 person to enjoy at 1
sittings. <br />
Our fully-prepared meals are deliverd freash, & to eat in 3 minutes.
</p>
<div class="btns">
<a href="#" class="main-btn-fill btn-animation">Select Program</a>
<a href="#" class="main-btn btn-animation delivery-btn">View Menu</a>
</div>
</div>
</section>
<section class="why-foody">
<h1 class="main-headings foody-headings">Why Foody Meal</h1>
<div class="why-foody_cards">
<div class="cards_card">
<h1 class="card_title">Variety</h1>
<div class="card_img img-one"></div>
<p class="card-info">60+ recipes a week, cooked from 10 mins</p>
<div class="card-info">
Family classics, global cuisines plus Joe Wickss health rang
</div>
<div class="card-info">
Tasty plant based and gluten free options too
</div>
</div>
<div class="cards_card">
<h1 class="card_title">Quality</h1>
<div class="card_img img-one"></div>
<p class="card-info">Fresh ingredients from trusted suppliers</p>
<div class="card-info">100% British fresh meat</div>
<div class="card-info">
All recipes tried, tasted and lived by our chefs and customers
</div>
</div>
<div class="cards_card">
<h1 class="card_title">Simplicity</h1>
<div class="card_img img-one"></div>
<p class="card-info">Easy-to follow recipe cards</p>
<div class="card-info">Precies ingredients with zero foot waste</div>
<div class="card-info">Precies ingredients with zero foot waste</div>
</div>
</div>
<div class="btns btn-container">
<a href="#" class="main-btn btn-lg btn-animation">Get Started</a>
</div>
</section>
<section class="testimonial">
<div class="user-img"></div>
<div class="user-rating-info">
<p>
"I love coming home to a foody with four different ban going recipes
each week. With so many dishes to choose from there's always something
new to try!"
</p>
<h1 class="user-name">
<span class="highlight">Joe Wicks</span> | The body Coach
</h1>
</div>
</section>
<footer class="footer">
<div class="footer-card">
<h1 class="footer-title">Location</h1>
<p class="footer-info">Start With Our Fresh Shrimps</p>
<p class="footer-info">4132 Somewhere On Earth</p>
</div>
<div class="footer-card">
<h1 class="footer-title">Working Hours</h1>
<p class="footer-info">Monday Thursday Friday</p>
<p class="footer-info">Saturday Sunday</p>
</div>
<div class="footer-card">
<h1 class="footer-title">Contact Us</h1>
<a href="#" class="footer-info">[email protected]</a>
</div>
</footer>
</body>
</html>