-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathINDEX.HTML
More file actions
115 lines (110 loc) · 4.01 KB
/
Copy pathINDEX.HTML
File metadata and controls
115 lines (110 loc) · 4.01 KB
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
<!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">
<title>foodie.com</title>
<!-- Box Icons -->
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/boxicons@latest/css/boxicons.min.css">
<!-- Link To CSS -->
<link rel="stylesheet" href="STYLE.CSS">
<link rel="icon" href="src/icon.jpeg">
</head>
<body>
<!-- Navbar -->
<header>
<a href="#" class="logo">FOODIE</a>
<div class="bx bx-menu" id="menu-icon"></div>
<ul class="navbar">
<li><a href="#home">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#chefs">Our Chefs</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</header>
<!-- Home -->
<section class="home" id="home">
<div class="home-text">
<h3>Fast and Furious</h3>
<h1>Be The Fastest <br />In Delivering <br />Your <span>Food</span></h1>
<p>The Top quality food delivering with the lowest delivery time.</p>
<a href="#contact" class="btn">Contact Here</a>
</div>
<div class="home-img">
<img src="src/main.jpg" alt="">
</div>
</section>
<!-- Services -->
<section class="services" id="services">
<div class="heading">
<p>What We Serve</p>
<h2>Your Favourite Food <br> Delivery Partner</h2>
</div>
<div class="services-container">
<div class="box">
<img src="src/3.jpg" alt="">
<h2>Easy To Order</h2>
<p>order your favourite food with the easy and responsive website.</p>
</div>
<div class="box">
<img src="src/2.jpg" alt="">
<h2>Fastest Delivery</h2>
<p>You don't have to wait too much because we are here for you.</p>
</div>
<div class="box">
<img src="src/1.jpg" alt="">
<h2>Best Quality</h2>
<p>The quality is very imp that's why you order always on the safest hand .</p>
</div>
</div>
</section>
<!-- Chef section -->
<section class="chefs" id="chefs">
<div class="heading">
<p>Our Chefs</p>
<h2>Our Awesome Chef's</h2>
</div>
<div class="chefs-container">
<div class="chef-box">
<img src="src/chef1.jpg" alt="">
<div class="text">
<h2>John Watson</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Nesciunt, doloribus.</p>
<a href="#" class="btn">Hire Now</a>
</div>
</div>
<div class="chef-box">
<img src="src/chef2.jpg" alt="">
<div class="text">
<h2>Alexa Gomez</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Nesciunt, doloribus.</p>
<a href="#" class="btn">Hire Now</a>
</div>
</div>
</div>
</section>
<!-- Contact -->
<section class="contact" id="contact">
<div class="heading">
<p>Have Any Question?</p>
<h2>Contact Us</h2>
</div>
<div class="contact-form">
<form action="">
<input type="text" placeholder="Your Name">
<input type="email" name="" id="" placeholder="Enter Your Email...">
<textarea name="" id="" cols="30" rows="10" placeholder="Write Your Message Here... "></textarea>
<input type="button" value="Send" class="contact-button">
</form>
</div>
</section>
<!-- Copyright -->
<div class="copyright">
<p>© Foodie All Right Reserved.</p>
</div>
<!-- Link To Js -->
<script src="SCRIPT.JS"></script>
</body>
</html>