-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
137 lines (124 loc) · 5.74 KB
/
index.html
File metadata and controls
137 lines (124 loc) · 5.74 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="try.css">
<link rel="stylesheet" media="screen and (max-width:1140px)" href="phone.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=Baloo+Bhai+2&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap" rel="stylesheet">
<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=Asap:ital,wght@1,600&display=swap" rel="stylesheet">
<title>Best online food delivery in India | onlinemeal.com</title>
</head>
<body>
<nav class="navbar">
<div class="logo">
<a href="index.html"> <img src='images/Untitled design.jpg' alt="Onlinemeal.com"> </a>
</div>
<ul>
<li class="item"><a href="#home">Home</a></li>
<li class="item"><a href="#services">Services</a></li>
<li class="item"><a href="#clients-section">Our clients</a></li>
<li class="item"><a href="#contact">Contact us</a></li>
</ul>
</nav>
<section id="home">
<div class="t-con">
<h1 class="h-primary">
Welcome to Onlinemeal
</h1>
<p>India's best restaurants at your home</p>
<!-- <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eaque magni blanditiis dicta qui quae aperiam nemo iure quam aliquam tenetur placeat beatae, molestiae mollitia facilis, voluptate dolorum voluptatem quibusdam vero nostrum quod, ducimus obcaecati? Sed quae, ipsum aliquam voluptatibus vero nam dolor asperiores voluptas voluptate provident a labore eos ex itaque, quod cum tempore facere? Repellendus hic provident ab quibusdam?</p> -->
<!-- <button class="btn">Order Now</button> -->
<a href="" class="btn">Order Now</a>
</div>
</section>
<section id="services">
<h1 class="primary center">
Our services
</h1>
<div class="boxes-con">
<div class="box">
<img src="images/imageedit_1_5806831348.png" alt="img">
<h2 class="h-secondary center">
Food Ordering
</h2>
<p class="center">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsa autem deleniti sit reiciendis aspernatur sequi.
</p>
</div>
<div class="box">
<img src="images/pexels-anand-raj-5775684.jpg" alt="img" class="img-2ser">
<h2 class="h-secondary center">
Order in Bulk
</h2>
<p class="center">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Unde nostrum ullam placeat. Voluptatum, nisi?
</p>
</div>
<div class="box">
<img src="images/man-6051503_1280.webp" alt="img" class="img-3ser">
<h2 class="h-secondary center">
Food catering
</h2>
<p class="center">
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Asperiores sit quisquam molestias iusto officiis autem assumenda. </p>
</div>
</div>
</section>
<section id="clients-section">
<h1 class="primary center">
Our clients
</h1>
<div id="clients">
<div class="client-items">
<img src="images/subway-photo-logo-4300.png" alt="clients">
</div>
<div class="client-items">
<img src="images/dominos-logo-4168.png" alt="clients">
</div>
<div class="client-items">
<img src="images/papa-johns-png-5067.png" alt="clients">
</div>
<div class="client-items">
<img src="images/pizza-hut-png-logo-3804.png" alt="clients" class="img-cl4">
</div>
<div class="client-items">
<img src="images/burger-king-logo-3274.png" alt="clients">
</div>
</div>
</div>
</section>
<section id="contact">
<h1 class="primary center">Contact Us</h1>
<div id="contact-box">
<form action="https://formspree.io/f/mwkaqanq" method="POST">
<div class="form-group">
<label for="name">Name: </label>
<input type="text" name="name" id="name" placeholder="Enter your name" required>
</div>
<div class="form-group">
<label for="email">Email: </label>
<input type="email" name="Email" id="email" placeholder="Enter your email" required>
</div>
<div class="form-group">
<label for="phone">Phone Number: </label>
<input type="phone" name="Phone Number" id="phone" placeholder="Enter your phone" required>
</div>
<div class="form-group">
<label for="message">Message: </label>
<textarea name="message" id="message" cols="30" rows="10" required></textarea>
</div>
<input type="submit" value="Submit" class="btm" >
</form>
</div>
</section>
<footer>
<div class="center">
Copyright © www.myOnlineMeal.com. All rights reserved!
</div>
</footer>
</body>
</html>