-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
125 lines (121 loc) · 5.1 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
118
119
120
121
122
123
124
125
<!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>Best online Food delievery Services in India</title>
<link rel="stylesheet" href="css/style.css">
</head>
<link href="https://fonts.googleapis.com/css?family=Baloo+Bhai&display=swap" rel="stylesheet">
<style>
/*body{
background: url('food/food1.jpg') no-repeat center center/cover ;
color: white;
}*/
</style>
<body>
<nav id="navbar">
<div id="logo">
<img src="food/logo.jpg" height="70px" width="70px" alt="MyOnlineMealservices.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>
<li class="item"><a href="#">Others</a></li>
</ul>
</nav>
<section id="home">
<h1 class="h-primary" style="color: black;">Welcome To My online Meal Services</h1>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Autem, neque! Maxime, consequuntur. Saepe animi suscipit voluptatum, molestias dolor ut vel eos. </p>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Quo, architecto. Eum, praesentium.</p>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Exercitationem ipsa laborum itaque.</p>
<button class="btn">Order Now</button>
</section>
<section class="services-container">
<h1 class="h-primary center">Our Services</h1>
<div id="services">
<div class="box">
<img src="food/food delievery.jpg" alt="">
<h2 class="h-secondary center">Food Ordering</h2>
<p class="center" style="color: black;">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Vitae voluptas impedit eum velit vero, molestias harum aliquam? At cumque corrupti.
</p>
</div>
<div class="box">
<img src="food/burger.jpg" alt="">
<h2 class="h-secondary center">Food Catering</h2>
<p class="center" style="color: black;">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Vitae voluptas impedit eum velit vero, molestias harum aliquam? At cumque corrupti.
</p>
</div>
<div class="box">
<img src="food/food2.jpg" alt="">
<h2 class="h-secondary center">Bulk Ordering</h2>
<p class="center" style="color: black;">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Vitae voluptas impedit eum velit vero, molestias harum aliquam? At cumque corrupti.
</p>
</div>
</div>
</section>
<section id="client-section">
<h1 class="h-primary center">Our Clients</h1>
<div id="clients">
<div class="client-item">
<img src="food/mc logo.jpg" alt="Our Clients">
</div>
<div class="client-item">
<img src="food/google logo.jpg" alt="Our Clients">
</div>
<div class="client-item">
<img src="food/amazon logo.jpg" alt="Our Clients">
</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="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">
Location:
</label>
<input type="text" name="name" id="name" placeholder="Enter Your Location/Address">
</div>
<div class="form-group">
<label for="name">
Feedback:
</label>
<input type="Message" name="name" id="Message" placeholder="Enter Your Feedback">
</div>
<button class="btn2">Submit</button>
</form>
</div>
</section>
<footer>
<div class="center">
Copyright © www.MyOnlineMealservices.com. All Rights Reserved!
</div>
</footer>
</body>
</html>