-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (95 loc) · 4.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Casserole Co</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="stylesheet" href="./styles/styles.css">
<link rel="stylesheet" href="./styles/navbar.css">
<link rel="stylesheet" href="./styles/footer.css">
<link rel="stylesheet" href="./styles/index.css">
</head>
<body>
<div class="main-container">
<div id="navbar-container">
<div class="navbar">
</div>
</div>
<div id="intro_div">
<br><br>
<section class="hero">
<div class="hero-overlay">
<div class="hero-content">
<h1 class="fade-in">Welcome to Casserole Co.</h1>
<p class="slide-in">Experience gourmet meals crafted with care and delivered fresh to your door.</p>
<button class="btn-primary bounce">Fresh Veggies/Bakeries with exotic spices.<br>
A Heaven for sweettooth.</button>
</div>
</div>
</section>
<br><br>
<h2 id="features_heading">Why Choose Casserole Co.?</h2>
<section class="features">
<div class="feature">
<img src="./img/ingredients.jpeg" alt="Quality Ingredients">
<h3>Quality Ingredients</h3>
<p>We source the freshest and highest quality ingredients for every meal.</p>
</div>
<div class="feature">
<img src="./img/fast_delivery.jpeg" alt="Fast Delivery">
<h3>Fast Delivery</h3>
<p>Your meals arrive fresh and on time, every time.</p>
</div>
<div class="feature">
<img src="./img/nutritients.jpeg" alt="Wide Variety">
<h3>Natural taste</h3>
<p>No artificial flavours or sweetening.</p>
</div>
<div class="feature">
<img src="./img/variety.jpeg" alt="Wide Variety">
<h3>Nutritions Guaranteed</h3>
<p>Explore a diverse menu that caters to every taste.</p>
</div>
</section>
<div id="intro_div_sec">
<!-- <br><br> -->
<section class="testimonials bounce">
<h2>What Our Customers Say</h2>
<div class="carousel">
<!-- Testimonial Slides -->
<div class="carousel-slide active">
<p>"The food is absolutely amazing! Fresh ingredients and perfect flavors."</p>
<h4>- Sarah Johnson</h4>
</div>
<div class="carousel-slide">
<p>"Casserole Co. made my life so much easier with their quick delivery and delicious meals."</p>
<h4>- Mark Stevens</h4>
</div>
<div class="carousel-slide">
<p>"A wide variety of dishes to choose from. I love the attention to quality."</p>
<h4>- Emily Carter</h4>
</div>
<div class="carousel-slide">
<p>"Their service is reliable, and the food is consistently excellent."</p>
<h4>- David Lee</h4>
</div>
</div>
<!-- Dots for Navigation -->
<div class="carousel-dots"></div>
</section>
<!-- <br><br> -->
<section class="cta-section">
<div class="cta-content">
<h2>Ready to Taste the Difference?</h2>
<p>Sign up today and enjoy your first meal on us!</p>
<a href="login.html" class="btn-cta bounce">Get Started</a>
</div>
</section>
</div>
</div>
<div id="footer-div">
</div>
</div>
<script src="./scripts/main.js" type="module"></script>
<script src="./scripts/carousel.js" type="module"></script>
</body>
</html>