-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
205 lines (194 loc) · 9.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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<!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="https://unpkg.com/swiper@7/swiper-bundle.min.css" />
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/css/header.css">
<link rel="stylesheet" href="/css/footer.css">
<link rel="stylesheet" href="/recipe/css/style.css">
<title>Foodzilla</title>
</head>
<body>
<section>
<div class="circle"></div>
<header>
<div class="topnav">
<a href="./index.html" class="active"><img src="./images/logowhite.png" class="logo"></a>
<ul class="navigation" id="myLinks">
<li><a href="./index.html">Home</a></li>
<li><a href="./list/index.html">List</a></li>
<li><a href="./about-us/about.html">About Us</a></li>
<li><a href="./contact us/contactus.html">Contact Us</a></li>
</ul>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
</header>
<div class="content">
<div class="textBox">
<h2>Cooking a delicious food easily</h2>
<p>We help you with all the secret recipes <br>and provide a unique experience in the kitchen. <br>Start
exploring now!
</p>
<a href="#main-section" class="btn">Learn More<img src="./images/icons/spoon.png" alt=""></a>
</div>
<div class="imgBox">
<div class="swiper">
<div class="swipe-text">Swipe here! <img class="arrow" src="./images/up-arrow.png" alt=""></div>
<div class="swiper-wrapper">
<div class="swiper-slide"><img src="./images/meals/meal1.png" alt=""></div>
<div class="swiper-slide"><img src="./images/meals/meal2.png" alt=""></div>
<div class="swiper-slide"><img src="./images/meals/meal3.png" alt=""></div>
<div class="swiper-slide"><img src="./images/meals/meal4.png" alt=""></div>
<div class="swiper-slide"><img src="./images/meals/meal5.png" alt=""></div>
<div class="swiper-slide"><img src="./images/meals/meal6.png" alt=""></div>
<div class="swiper-slide"><img src="./images/meals/meal7.png" alt=""></div>
</div>
</div>
</div>
</div>
<div id="main-section">
<div class="container">
<div id="content">
<h3 class="content-title"> RECIPES <i class="fas fa-utensils"></i></h3>
<div id="recipe-list">
</div>
<h3 class="top-rated content-title">TOP RATED <i class="fas fa-star"></i></h3>
<div id="top-rated-recipe">
</div>
</div>
<div id="section-rigth">
<div id="fb-feed">
<h3>Facebook Feed</h3>
<div>
<iframe
src="https://www.facebook.com/plugins/page.php?href=https%3A%2F%2Fwww.facebook.com%2FCookzilla-101593645703920&tabs=timeline&width=250&height=400&small_header=false&adapt_container_width=true&hide_cover=false&show_facepile=true&appId"
width="250" height="400" style="border:none;overflow:hidden" scrolling="no"
frameborder="0" allowfullscreen="true"
allow="autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share"></iframe>
</div>
</div>
<h3>Healthy recipes</h3>
<div id="healthy-recipes">
</div>
</div>
</div>
<div id="load-more">
<button id="loadmore">Load more</button>
</div>
</div>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<h2 class="food-title"></h2>
<div class="container">
<div class="container__image">
<img class="food-image" src="" alt="food-image">
</div>
<div class="container__ingredients">
<div class="container__ingredients-heading">
<img class="ingredients-logo" src="/recipe/images/ingredients.png" alt="ingredient-logo"
width="40px">
<h2 class="ingredients-heading"> Ingredients</h2>
</div>
<div class="container__ingredients-items">
</div>
</div>
<div class="container__summary">
<h2 class="summary-heading">Quick info</h2>
<ul class="summary-list">
<li class="summary-item"><img class="summary-logo" src="/recipe/images/back-in-time.png"
alt="time" width="30px"><span class="cooking-time"></span> </li>
<li class="summary-item"><img class="summary-logo" src="/recipe/images/user (1).png"
alt="servings" width="30px"><span class="serving-count"></span> </li>
<li class="summary-item"><img class="summary-logo" src="/recipe/images//calories.png"
alt="calories" width="30px"><span class="serving-kcal"></span> </li>
</ul>
</div>
<div class="container__directions">
<h2 class="directions-heading">Directions</h2>
<ol class="directions-list">
</ol>
</div>
</div>
</div>
</div>
<!-- footer -->
<footer id="footer">
<div class="footer-container__section footer-text">
<img class="footer-logo" src="../images/logowhite.png" alt="">
<p class="footer-container__section-text">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed
do eiusmod tempor incididunt ut
aliquip ex ea commodo consequat.</p>
</div>
<div class="footer-container__section newsletter">
<h3 class="footer-container__section-title">SUBSCRIBE <em>to</em> OUR NEWSLETTER</h3>
<form class="footer-container__section-form" action="">
<input type="email" placeholder="Enter Your Email Address" class="footer-input">
<button class="footer-btn">SUBSCRIBE</button>
</form>
</div>
<div class="footer-container__section menu-items">
<h3 class="footer-container__section-title">QUICK NAVIGATION</h3>
<ul class="footer__menu">
<li class="footer__menu-item"><a class="footer__menu-link" href="./index.html">Home</a></li>
<li class="footer__menu-item"><a class="footer__menu-link" href="./list/index.html">List</a></li>
<li class="footer__menu-item"><a class="footer__menu-link" href="./about-us/about.html">About us</a>
</li>
<li class="footer__menu-item"><a class="footer__menu-link"
href="./contact us/contactus.html">Contact us</a></li>
</ul>
</div>
<div class="footer-container__section social-media">
<h3 class="footer-container__section-title">STAY CONNECTED</h3>
<img class="footer-icon" src="../images/icons/facebook-white.png" alt="facebook-icon">
<img class="footer-icon" src="../images/icons/twitter-white.png" alt="twitter-icon">
<img class="footer-icon" src="../images/icons/instagram-white.png" alt="instagram-icon">
<img class="footer-icon" src="../images/icons/pinterest.png" alt="pinteres-icon">
</div>
</footer>
</section>
<!-- fontawesome icons -->
<script src="https://kit.fontawesome.com/b55e23319b.js" crossorigin="anonymous"></script>
<!-- js for slider swiper -->
<script src="https://unpkg.com/swiper@7/swiper-bundle.min.js"></script>
<!-- jquery-->
<script src="https://code.jquery.com/jquery-3.6.0.js"
integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
<!-- js -->
<script src="/js/js.js"></script>
<script>
var swiper = new Swiper('.swiper', {
effect: 'coverflow',
grabCursor: true,
centeredSlides: true,
slidesPerView: 'auto',
coverflowEffect: {
rotate: 0,
stretch: 0,
depth: 100,
modifier: 1,
slideShadows: true,
},
pagination: {
el: '.swiper-pagination',
},
loop: true,
});
function myFunction() {
var x = document.getElementById("myLinks");
if (x.style.display === "block") {
x.style.display = "none";
} else {
x.style.display = "block";
}
}
</script>
</body>
</html>