-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
109 lines (107 loc) · 5.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Myonlinemeal.com</title>
<link rel="stylesheet" href="/projects/style.css">
<link rel="stylesheet" media="screen and (max-width:1170px)" href="/projects/phone.css">
<link href="https://fonts.google.com/specimen/Bree+Serif?query=Bree+Serif" rel="stylesheet">
</head>
<body>
<nav id="navbar">
<div id="logo">
<img src="/projects/myimg.jpg" alt="Myonlinemeal.com">
</div>
<ul>
<li class="item"><a href="#Home">Home</a></li>
<li class="item"><a href="#services-container">Service</a></li>
<li class="item"><a href="#client-section">About us</a></li>
<li class="item"><a href="#contact">Contact </a></li>
</ul>
</nav>
<section id="Home">
<h1 class="h-primary"> Welcome to My Food Land </h1>
<p>Be it a romantic date or chilling with your mates, Food Land is your perfect friend ⌣</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="/projects/istockphoto-1031362212-612x612.jpg" alt="">
<h2 class="h-secondary center">Food Catering</h2>
<p class="center">Great Catering Service also revolves around good customer service-being able to talk to the guest with courtesy and applying the necessary human relation skills possible. We prepare great meals, set up good venue and put emergency services. </p>
</div>
<div class="box">
<img src="/projects/images/nood.jpg" alt="">
<h2 class="h-secondary center">Bulk Ordering</h2>
<p class="center"> We bring to you Hyderabad’s first ever online bulk ordering, for all kinds of events. A platform that connects you to your favourite restaurants or caterers, without the hassle of negotiating offline, handling the cutlery, utensils(handi delivery & return), and making sure the food is delivered on time. You just click, pay and enjoy.
</p>
</div>
<div class="box">
<img src="/projects/th.jpeg" alt="">
<h2 class="h-secondary center">Food Ordering</h2>
<p class="center"> Food Land is a Home food delivery platform that connects customers with Trusted home chefs to offer Homemade Food. The company offers a wide range of cuisines, including regional specialties and fusion dishes, making it easy to find something to suit any taste and preference.</p>
</div>
</div>
</section>
<hr>
<section id="client-section">
<h1 class="h-primary center"> Our Clients</h1>
<div id="clients">
<div class="client-item">
<img src="/projects/Restaurant-logo-design-free-template-1180x664.jpg" alt="">
</div>
<div class="client-item">
<img src="/projects/dell logo.png" alt="">
</div>
<div class="client-item">
<img src="/projects/jw.jpeg" alt="">
</div>
<div class="client-item">
<img src="/projects/royal-bengal-logo.png" alt="">
</div>
<div class="client-item">
<img src="/projects/sonar bangla.png" alt="">
</div>
<div class="client-item">
<img src="/projects/Taj_LOGO_City-Hotels_Lands End Mumbai_STDcolour_HR.jpg" alt="">
</div>
</div>
</section>
<hr>
<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="email"> E-Mail:</label>
<input type="email" name="Email" id="email" placeholder="Enter Your email">
</div>
<div class="form-group">
<label for="pin-code"> Pin Code:</label>
<input type="number" name="pin" id="code" placeholder="Enter Your Pin-Code">
</div>
<div class="form-group">
<label for="Phone"> Phone Number:</label>
<input type="number" name="phone" id="number" placeholder="Enter Your Phone Number">
</div>
<div class="form-group">
<label for="name"> Message:</label>
<textarea name="text" id="test" cols="30" rows="13"></textarea>
</div>
</form>
</div>
</section>
<footer>
<div class="center">
Copyright© www.myonlineMeal.com. All rights reserved!
</div>
</footer>
</body>
</html>