-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
116 lines (109 loc) · 4.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Best Online Food Delivery Service in INDIA | MyonlineMeals.com</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" media="screen and (max-width: 1170px)" href="css/phone.css">
</head>
<style>
</style>
<body>
<nav id="navbar">
<div id="logo">
<img src="img/logo.jpg" alt="Onlinemeal.com">
</div>
<ul>
<li class="item"><a href="">Home</a></li>
<li class="item"><a href="">Services</a></li>
<li class="item"><a href="">About Us</a></li>
<li class="item"><a href="">Contact Us</a></li>
</ul>
</nav>
<section id="home">
<h1 class="h-primary">Welcome to MyOnlineMeal</h1>
<p>Lorem ipsum dolor Lorem sit amet consectetur adipisicing architecto aliquam!</p>
<p>Lorem ipsum hic beatae sunt ut architecto aliquam!</p>
<button class="btn">Order Now</button>
</section>
<hr>
<section class="services-container">
<h1 class="h-primary center">
Our Services
</h1>
<div id="services">
<div class="box">
<img src="img/pizza.jpg" alt="">
<h2 class="h-secoundary center">Food Ordering
</h2>
<p class="center"> Lorem ipsum dolor sit amet consectetur adipisicing elit. Maxime pariatur non ducimus. Soluta sequi,
optio aliquam assumenda dolore saepe adipisci eius aspernatur tempore! Quos.
</p>
</div>
<div class="box">
<img src="img/bg3.jpg" alt="">
<h2 class="h-secoundary center">Food Catering
</h2>
<p class="center"> Lorem ipsum dolor sit amet consectetur adipisicing elit. Maxime pariatur non ducimus. Soluta sequi,
optio aliquam assumenda dolore saepe adipisci eius aspernatur tempore! Quos.
</p>
</div>
<div class="box">
<img src="img/bg2.webp" alt="">
<h2 class="h-secondary center">Food Ordering
</h2>
<p class="center"> Lorem ipsum dolor sit amet, consectetur adipisicing elit. Pariatur accusamus omnis voluptatem ex voluptates obcaecati maxime molestiae mollitia magnam eum.Lorem ipsum dolor sit amet consectetur adipisicing elit. Maxime pariatur non ducimus. Soluta sequi,
optio aliquam assumenda dolore saepe adipisci eius aspernatur tempore! Quos.
</p>
</div>
</div>
</section>
<hr>
<section id="client-section">
<h1 class="h-primary center">Our Clients</h1>
<div class="clients">
<div class="client-item">
<img src="img/bg3.webp" alt="">
</div>
<div class="client-item">
<img src="img/bg3.webp" alt="">
</div>
<div class="client-item">
<img src="img/bg3.webp" alt="">
</div>
<div class="client-item">
<img src="img/bg3.webp" alt="">
</div>
</div>
</section>
<section id="contact">
<h1 class="h-primary center">Contact Us</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="email" placeholder="Enter Your Email">
</div>
<div class="form-group">
<label for="name">Phone: </label>
<input type="phone" name="name" id="phone" placeholder="Enter Your phone">
</div>
<div class="form-group">
<label for="name">Message: </label>
<textarea name="Message" id="Message" cols="30" rows="10"></textarea>
</div>
</form>
</div>
</section>
<footer>
<div class="center">
Copyright © www.myOnlinemeal.com. All rights reserved
</div>
</footer>
</body>
</html>