-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
144 lines (137 loc) · 4.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Food Recipe Search">
<title>Foodie | Search for popular recipes</title>
<!--Google Fonts-->
<link href='http://fonts.googleapis.com/css?family=Lato:300,400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<!--CSS-->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<header id="header">
<div class="container">
<div class="top-header">
<nav class="main-nav" role="navigation">
<ul>
<li><a href="#">log in</a></li>
<li><a href="#">sign up</a></li>
</ul>
</nav>
</div> <!-- top-header -->
<section class="branding">
<h1>Find your Favorite <span>Recipes</span></h1>
<button class="btn-cta">Get Started</button>
<p>or send us your own recipe and get <a href="#">rewarded!</a></p>
</section> <!-- branding -->
</div><!-- container -->
</header> <!-- header -->
<section id="features">
<div class="container">
<article class="feature">
<figure class="fig-image">
<img src="images/burger@2x.png" alt="Burger Icon">
</figure>
<figcaption class="fig-body">
<h2>GET INSPIRED</h2>
<p>Varieties of recipes across different Global cuisines available</p>
</figcaption> <!-- fig body -->
</article> <!-- feature -->
<article class="feature">
<figure class="fig-image">
<img src="images/money@2x.png" alt="Money Icon">
</figure>
<figcaption class="fig-body">
<h2>GET REWARDED</h2>
<p>Rewards for sending us your own recipe to showcase to the world</p>
</figcaption> <!-- fig body -->
</article> <!-- feature -->
<article class="feature">
<figure class="fig-image">
<img src="images/chef@2x.png" alt="Chef Icon">
</figure>
<figcaption class="fig-body">
<h2>GET SOCIAL</h2>
<p>Share a post and tag us on Social Media when your find your recipe here</p>
</figcaption> <!-- fig body -->
</article> <!-- feature -->
</div> <!-- container -->
</section> <!-- features -->
<section id="reviews">
<blockquote class="quote">
<q>I am so happy because I found this recipe, and it just made my life easier.Thanks so much for sharing!</q>
<footer>- Michael Clarke, Redmond, USA -</footer>
</blockquote>
</section> <!-- reviews -->
<section id="cuisines">
<h2>Brow<span>se By Cui</span>sine</h2>
<div class="container">
<div class="italian cuisine">
<p> 20 Recipes</p>
<h3>italian</h3>
</div>
<div class="indian cuisine">
<p> 20 Recipes</p>
<h3>indian</h3>
</div>
<div class="french cuisine">
<p> 20 Recipes</p>
<h3>french</h3>
</div>
<div class="steak cuisine">
<p> 20 Recipes</p>
<h3>steakhouse</h3>
</div>
<div class="seafood cuisine">
<p> 20 Recipes</p>
<h3>seafood</h3>
</div>
<div class="sushi cuisine">
<p> 20 Recipes</p>
<h3>sushi</h3>
</div>
<div class="mexican cuisine">
<p> 20 Recipes</p>
<h3>mexican</h3>
</div>
<div class="chinese cuisine">
<p> 20 Recipes</p>
<h3>chinese</h3>
</div>
<div class="pizza cuisine">
<p> 20 Recipes</p>
<h3>pizza</h3>
</div>
<div class="american cuisine">
<p> 20 Recipes</p>
<h3>american</h3>
</div>
</div> <!-- container -->
</section> <!-- cuisines -->
<section id="statistics">
<div class="stat-data">
<h3>23,567 <span>Recipes Available</span></h3>
</div>
<div class="stat-data">
<h3>431,729 <span>Active Users</span></h3>
</div>
<div class="stat-data">
<h3>892,173 <span>Positive Reviews</span></h3>
</div>
<div class="stat-data">
<h3>56,581 <span>Photos & Videos</span></h3>
</div>
<div class="stat-data">
<h3>3,182 <span>Spices & Herbs</span></h3>
</div>
</section> <!-- statistics -->
<footer id="footer">
<div class="container">
<p>© 2022 All Rights Reserved</p>
<p>Made with Love</p>
</div> <!-- container -->
</footer> <!-- footer -->
</body>
</html>