-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (80 loc) · 3.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Online-Meals</title>
<link rel="stylesheet" href="./meals.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Pangolin&display=swap" rel="stylesheet">
</head>
<body>
<nav id="navbar">
<div class="navcon">
<img id="logo-img" src="./logo-png.png" alt="Online-Meals.com">
<ul>
<li class="item"><a href="#">Home</a></li>
<li class="item"><a href="#">About</a></li>
<li class="item"><a href="#">Services</a></li>
<li class="item"><a href="#">Contact Us</a></li>
</ul>
</div>
</nav>
<section class="home">
<div class="cont">
<h1>Welcome to Online-meals.com</h1>
<p>Delicious meals delivered to your door.</p>
<p>Online meal website: the easiest way to enjoy good food.</p>
<p>Order online, eat offline.</p>
<button id="btn-order">Order Now</button>
</div>
</section>
<section>
<h2 id="ser-h2">Our Services</h2>
<div class="services">
<div class="ser">
<h3>Food Order</h3>
<img src="./pizza-png.png" alt="order food" class="ser-img">
<p>We bring the pizza, you bring the party.!</p>
</div>
<div class="ser">
<h3>Bulk Order</h3>
<img src="./bulk.jpeg" alt="order in bulk" class="ser-img">
<p>We handle your bulk orders with care!Bulk up your savings with bulk delivery.</p>
</div>
<div class="ser">
<h3>Food Delivery</h3>
<img src="./food-del.jpg" alt="food delivery" class="ser-img">
<p>No matter where you are, we’ll find you and feed you.!</p>
</div>
</div>
</section>
<section class="form-order">
<h2>Order Food</h2>
<h3>Enter your details</h3>
<form action="#">
<div>
<label for="name">Name</label>
<input type="text" id="name" placeholder="Enter your name">
</div>
<div>
<label for="address">Address</label>
<input type="text" placeholder="Enter your address" id="address">
</div>
<div>
<label for="e-mail">Email</label>
<input type="email" id="e-mail" placeholder="Enter your email">
</div>
<div>
<label for="ph-no">Phone Number</label>
<input type="number" id="ph-no" placeholder="Enter your phone number">
</div>
<input type="submit" id="submit">
</form>
</section>
<footer>
<h4>© Online-Meals</h4>
</footer>
</body>
</html>