-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (106 loc) · 5.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QuickEats</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/javascript.util/0.12.12/javascript.util.min.js"
integrity="sha512-oHBLR38hkpOtf4dW75gdfO7VhEKg2fsitvHZYHZjObc4BPKou2PGenyxA5ZJ8CCqWytBx5wpiSqwVEBy84b7tw=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://unpkg.com/[email protected]/dist/typed.umd.js"></script>
</head>
<body>
<header>
<nav>
<div class="icon">
<i id="menu" class="fa-solid fa-bars"></i>
</div>
<div class="brandLogo">QuickEats</div>
<ul>
<li> <a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="menu.html">Menu</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
<div class="navButtons">
<button class="btn loginBtn"><a href="/"> Login</a></button>
<button class="btn signupBtn"><a href="/">Signup</a></button>
</div>
</nav>
<div class="headerContent">
<h1> <span id="element"></span></h1>
<h2>Experience the convenience of QuickEats – your go-to for quick and tasty meals.</h2>
<button class="btn orderBtn"><a href="menu.html">Order Now</a></button>
</div>
<div class="imgCover"></div>
</header>
<main>
<section class="testimonalsSection">
<h1>Customer Reviews</h1>
<div class="Testimonals">
<div class="testimonal">
<img src="assets/images/testimonal1.jpg">
<h3>Sarah Mitchell</h3>
<p>QuickEats never fails to impress! The food is always fresh and delicious, and the delivery is
incredibly fast. It's my go-to for a cozy night in.</p>
</div>
<div class="testimonal">
<img src="assets/images/testimonal3.jpg">
<h3>Emily Johnson</h3>
<p>The service is outstanding, and the meals are exquisite. QuickEats is the perfect solution for a
busy professional like me who still wants to enjoy great food.</p>
</div>
<div class="testimonal">
<img src="assets/images/testimonal2.jpg">
<h3>David Lee</h3>
<p>Absolutely love the variety on the menu. Every dish I've tried has been top-notch. QuickEats
truly brings the restaurant experience to my doorstep.</p>
</div>
</div>
</section>
<section class="feedbackSection">
<div class="feedback">
<h2>Your Feedback Matters</h2>
<p>Your satisfaction is our top priority. Share your feedback to help us ensure we're meeting your
expectations.</p>
</div>
<form class="feedbackForm" id="feedback-form">
<input id="name" type="text" placeholder="Enter your Name" required>
<input id="email" type="email" placeholder="Enter your email" required>
<textarea id="feedback" rows="5" cols="60" placeholder="Share your Feedback" required></textarea>
<button type="Submit" class="feedbackBtn">Submit</button>
</form>
<p id="feedbackMessage">Feedback Submitted Successfully!</p>
</section>
</main>
<footer>
<div class="footerSocial">
<a href="https://linkedin.com/in/sahifa-zahra-4a2a1a2a1" target="_blank"><i
class="fa-brands fa-linkedin"></i></a>
<a href="https://www.instagram.com/sahifa.zahra?igsh=MWR6aHZ1c2ZzMGFxcg==" target="_blank"><i
class="fa-brands fa-instagram"></i></a>
<a href="https://www.facebook.com/sahifa.zehra.7?mibextid=kFxxJD" target="_blank"><i
class="fa-brands fa-facebook"></i></a>
<a href="mailto:[email protected]" target="_blank"><i class="fa-solid fa-envelope"></i></a>
</div>
<div class="copyright">
<p>© 2024 QuickEats. All Rights Reserved.</p>
</div>
</footer>
<script src="script.js"></script>
<script>
var typed = new Typed('#element', {
strings: ['Quality Food, Quality Service', 'Exclusive Deals and Discounts', 'Fast, Fresh, and Delicious'],
typeSpeed: 50,
});
var typed = new Typed('#element2', {
strings: ['Discover QuickEats'],
typeSpeed: 50,
});
</script>
</body>
</html>