-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (97 loc) · 3.76 KB
/
index.html
File metadata and controls
105 lines (97 loc) · 3.76 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>BEST ONLINE FOOD SERVICE IN INDIA</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Baloo+Bhai|Bree+Serif&display=swap" rel="stylesheet">
</head>
<body>
<nav id="navbar">
<div id="logo">
<img src="https://cdn2.f-cdn.com/contestentries/23918/7483126/51b08a9e9d89d_thumb900.jpg" alt="loading">
</div>
<ul>
<li class="item"><a href="#home">Home</a></li>
<li class="item"><a href="#services-container">OUR SERVICES</a></li>
<li class="item"><a href="#client-services">OUR CLIENTS</a></li>
<li class="item"><a href="#contact">CONTACT US</a></li>
</ul>
</nav>
<section id="home">
<h1 class="h-primary">Welcome to MY Onlinemeal</h1>
<p>
Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum"
</p>
<p>
Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC.
</p>
<button class="btn">Order Now</button>
</section>
</body>
<section id="services-container">
<h1 class="h-primary center">OUR SERVICES</h1>
<div id="services">
<div class="box">
<img src="https://tse3.mm.bing.net/th?id=OIP.qaaPGEtL7qBqN6kMZiQ5uwHaEK&pid=Api&P=0&w=310&h=175">
<h2 class="h.secondary center">Food catering</h2>
<p>Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. </p>
</div>
<div class="box">
<img src="https://tse3.mm.bing.net/th?id=OIP.LYfFgggkqgIyaTr-R5qQHwHaEA&pid=Api&P=0&w=309&h=168">
<h2 class="h.secondary center">bulk odering</h2>
<p>Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. </p>
</div>
<div class="box">
<img src="https://tse4.mm.bing.net/th?id=OIP.E43CrStiORfbExrXRP8tEAHaEr&pid=Api&P=0&w=262&h=167">
<h2 class="h-secondary center">food Ordering</h2>
<p>Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. </p>
</div>
</div>
</section>
<section id="client-services">
<h1 class="h-primary center">OUR CLIENTS</h1>
<div id="clients">
<div class="client-item">
<img src="https://tse1.mm.bing.net/th?id=OIP.h8SfIEGc1aAvDd_bOPfR6QHaJN&pid=Api&P=0&w=300&h=300">
</div>
<div class="client-item">
<img src="https://tse4.mm.bing.net/th?id=OIP._yr2ZMhiCvjLsL7hVvK0ZwHaHa&pid=Api&P=0&w=300&h=300">
</div>
<div class="client-item">
<img src="https://tse4.mm.bing.net/th?id=OIP.ObB4EMyN0ZbHk8nknvM5igHaEA&pid=Api&P=0&w=301&h=164">
</div>
<div class="client-item">
<img src="https://tse1.mm.bing.net/th?id=OIP.goYHa_TwAu6QMmE1M5MhGQHaIL&pid=Api&P=0&w=300&h=300">
</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" placeholder="Enter your name">
</div>
<div class="form-group">
<label for="name">EMAIL:</label>
<input type="text" name="name" placeholder="Enter your email">
</div>
<div class="form-group">
<label for="name">PHONE NUMBER:</label>
<input type="text" name="name" placeholder="Enter your phone no.">
</div>
<div class="form-group">
<label for="name">MESSAGE:</label>
<textarea name="MESSAGE" cols="10" rows="10"></textarea>
</div>
</form>
</div>
</section>
<footer>
<div class="center">
copyright © www.myonlinemeal.com. all rights reserve
</div>
</footer>
</html>