-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
167 lines (118 loc) · 4.17 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<html>
<head>
<title>Best Online Food Delivery Service in India | MyOnlineMeal.com</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav id="navbar">
<div id="logo">
<img src="images/project1 logo1.jpg" alt="MyOnlineMeal.com">
</div>
<ul>
<li class="item"><a href="#home">Home</a></li>
<li class="item"><a href="#services-container">Services</a></li>
<li class="item"><a href="#client-section">Clients</a></li>
<li class="item"><a href="#Contact">Contact Us</a></li>
</ul>
</nav>
<section id="home">
<h1 class="h-primary">Welcome to MyOnlineMeal</h1>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusantium molestiae cupiditate in aspernatur!
</p>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
</p>
<button class="btn">Order Now</button>
</section>
<section id="services-container">
<h1 class="h-primary center">Our Services</h1>
<div id="services">
<div class="box">
<img src="images/project1 service2.png" alt="myOnlineMeal">
<h2 class="h-secondary center">Food Ordering</h2>
<p class="center">
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
</p>
</div>
<div class="box">
<img src="images/project1 service6.jpg" alt="myOnlineMeal">
<h2 class="h-secondary center">Catering</h2>
<p class="center">
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
</p>
</div>
<div class="box">
<img src="images/project1 order3.png" alt="myOnlineMeal">
<h2 class="h-secondary center">Bulk Ordering</h2>
<p class="center">
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
</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="images/project1 client4.jpg" alt="OurClient's">
</div>
<div class="client-item">
<img src="images/project1 client5.jpg" alt="OurClient's">
</div>
<div class="client-item">
<img src="images/project1 client6.jpg" alt="OurClient's">
</div>
<div class="client-item apple">
<img src="images/project1 client1.jpg" alt="OurClient's">
</div>
<div class="client-item">
<img src="images/project1 client3.jpg" alt="OurClient's">
</div>
</div>
</section>
<section id="Contact">
<h1 class="h-primary center">Contact Us</h1>
<div id="Contact-box">
<form action="Resturant.cpp">
<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">Address:</label>
<input type="text" name="address" id="address" placeholder="Enter Your Address..">
</div>
<div class="form-group">
<label for="gender">Select Your Gender:</label>
<select name="gender" id="gender">
<option value="male">Male</option>
<option value="female">Female</option>
<option value="transgender">Transgender</option>
</select>
</div>
<div class="form-group">
<label for="name1">Email:</label>
<input type="email" name="name1" id="name1" placeholder="Enter Your Email..">
</div>
<div class="form-group">
<label for="name2">Phone:</label>
<input type="phone" name="name2" id="name2" placeholder="Enter Your Phone No.">
</div>
<div class="form-group">
<label for="message">Message:</label>
<textarea name="message" id="message" cols="30" rows="10" placeholder="Write a Message.."></textarea>
</div>
<div class="form-submit">
<input type="submit" name="name3" id="name3" placeholder="">
</div>
</form>
</div>
</section>
<footer>
<p class="center">
Copyright © www.myOnlineMeal.com, All rights reserved..!
</p>
</footer>
</body>
</html>