-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfood-order.html
168 lines (131 loc) · 5.83 KB
/
food-order.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
168
<!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>Order Your Food</title>
<!-- Boostrape CDN -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- Default CSS File -->
<link rel="stylesheet" href="css/food-order.css">
<!-- Font Awesome CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
</head>
<body>
<!-- navbar starts here -->
<header class="fixed-top py-4">
<nav class="navbar navbar-expand-lg">
<div class="container-fluid">
<a class="navbar-brand" href="index.html"><span>Resto</span>Tech</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<i class="fa fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link " href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#rooms">Rooms</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html">Membership</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact-us.html">Contact Us</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
More
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="covid.html ">Covid 19</a></li>
<li><a class="dropdown-item" href="foods.html">Cuisines</a></li>
<li><a class="dropdown-item" href="hotels.html">Hotels (Around The <br> Globe)</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="teams.html">Boards of Directors</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!-- navbar starts ends -->
<!-- order section starts -->
<section class="order" id="order">
<h1 class="heading"> <span>order</span> now </h1>
<div class="row">
<div class="image">
<img src="https://i.postimg.cc/Bv4TQJkZ/Iftar-dinner-amico.png" alt="Order Food Online">
</div>
<form action="">
<div class="inputBox">
<input type="text" placeholder="name" required>
<input type="email" placeholder="email" required>
</div>
<div class="inputBox">
<input type="number" placeholder="number" required>
</div>
<textarea placeholder="address" name="" id="" cols="30" rows="10" required></textarea>
<a href="payment.html" class="btn">Order Now</a>
</form>
</div>
</section>
<!-- order section ends -->
<!-- footer section starts -->
<section class="footer">
<div class="box-container">
<div class="box">
<h3>quick links</h3>
<a href="index.html"> <i class="fas fa-arrow-right"></i> home</a>
<a href="about.html"> <i class="fas fa-arrow-right"></i> about </a>
<a href="hotels.html"> <i class="fas fa-arrow-right"></i> hotel</a>
<a href="#membership"> <i class="fas fa-arrow-right"></i> Membership</a>
<a href="contact-us.html"> <i class="fas fa-arrow-right"></i> contact</a>
</div>
<div class="box">
<h3>extra links</h3>
<a href="book.html"> <i class="fas fa-arrow-right"></i> book now </a>
<a href="index.html#rooms"> <i class="fas fa-arrow-right"></i> Rooms</a>
<a href="teams.html"> <i class="fas fa-arrow-right"></i> Boards Of Directors</a>
</div>
<div class="box">
<h3>follow us</h3>
<a href="https://facebook.com" target="_blank"> <i class="fab fa-facebook-f"></i> facebook </a>
<a href="https://twitter.com" target="_blank"> <i class="fab fa-twitter"></i> twitter </a>
<a href="https://instagram.com" target="_blank"> <i class="fab fa-instagram"></i> instagram </a>
<a href="https://linkedin.com" target="_blank"> <i class="fab fa-linkedin"></i> linkedin </a>
<a href="https://pinterest.com" target="_blank"> <i class="fab fa-pinterest"></i> pinterest </a>
</div>
<div class="box">
<h3>newsletter</h3>
<p>subscribe for latest updates</p>
<form action="">
<input type="email" placeholder="enter your email">
<input type="submit" value="subscribe" class="btn">
</form>
</div>
</div>
</section>
<section class="credit">Team 210966 |
Participants - Pranav & Abhinav | © 2021 all rights reserved</section>
<!-- footer section ends -->
<!-- Boostrap JS CDN -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13"
crossorigin="anonymous"></script>
</body>
</html>