-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
117 lines (109 loc) · 4.47 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
<!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>Ritz Food Delivery</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" media="screen and (max-width: 452px)" href="css/phone.css">
<link rel="stylesheet" media="screen and (min-width: 453px) and (max-width: 1170px)" href="css/phone.css">
<link rel="stylesheet" media="screen and (min-width: 1170px) and (max-width: 1535px)" href="css/phone1170.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bree+Serif&family=Roboto+Slab:wght@700&display=swap"
rel="stylesheet">
</head>
<body>
<nav id="navbar">
<div id="logo">
<img src="logo.png" alt="Ritz Food Delivery">
</div>
<ul>
<li class="item"><a href="#home">Home</a></li>
<li class="item"><a href="#service-container">Services</a></li>
<li class="item"><a href="#client-section">Our Partners</a></li>
<li class="item"><a href="#contact">Contact</a></li>
</ul>
</nav>
<section id="home">
<h1 class="primary">Welcome To Ritz Food Delivery</h1>
<p class="para">This is the place where you belong.
</p>
<p class="para">Always Fresh</p>
<button class="btn">
Order Now
</button>
</section>
<section id="service-container">
<h1 class="primary center">What We Offer</h1>
<div id="services">
<div class="box">
<img src="img/1.png" alt="">
<h2 class="secondary center">Food Ordering</h2>
<p class="center">Order your favourite delicacy.</p>
</div>
<div class="box">
<img src="img/catering.png" alt="">
<h2 class="secondary center">Food Catering</h2>
<p class="center">Any special occasions for your loved ones? No problem, we have got you covered! We provide catering services too for upto 500 people.</p>
</div>
<div class="box">
<img src="img/3.png" alt="">
<h2 class="secondary center">Food Delivery</h2>
<p class="center">Don't want to wait in line for your order. No Problem! Order Online and get it delivered right at your door step.</p>
</div>
</div>
</section>
<section id="client-section">
<h1 class="primary center">
Meet Our Sponsers
</h1>
<div id="clients">
<div class="client-items">
<img src="img/7.png" alt="">
</div>
<div class="client-items">
<img src="img/8.png" alt="">
</div>
<div class="client-items">
<img src="img/9.png" alt="">
</div>
<div class="client-items">
<img src="img/10.png" alt="">
</div>
<div class="client-items">
<img src="img/11.png" alt="">
</div>
</div>
</section>
<section id="contact">
<h1 class="primary center">
For Promotions and Exciting Offers
</h1>
<div id="contact-box">
<form action="#">
<div class="form-group">
<label for="name">Name: </label>
<input type="text" name="name" id="name" placeholder="Enter your name">
</div>
<div class="form-group">
<label for="name">Email:</label>
<input type="email" name="name" id="name" placeholder="Enter your email">
</div>
<div class="form-group">
<label for="name">Phone Number:</label>
<input type="phone" name="name" id="name" placeholder="Enter your Phone Number">
</div>
<div class="form-group">
<label for="name">Message:</label>
<textarea name="message" id="message" cols="30" rows="10" placeholder="Your thoughts"></textarea>
</div>
</form>
</div>
</section>
<footer class="center">
Copyright © www.ritzfooddelivery.com. All Rights Reserved.
</footer>
</body>
</html>