forked from muzankibu977/Restaurent-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtakeaway.html
More file actions
42 lines (41 loc) · 1.8 KB
/
Copy pathtakeaway.html
File metadata and controls
42 lines (41 loc) · 1.8 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
<html>
<head>
<title>Take Away</title>
<link rel="stylesheet" href="takeaway.css">
</head>
<body>
<header>
<h1>Creav!ng</h1>
</header>
<div class="order-box">
<h1 style="font-family: MV Boli;">Your Take Away!</h1>
<form>
<label style="font-family:MV Boli">Name</label>
<input type="text" placeholder="">
<label style="font-family:MV Boli">Contact</label>
<input type="text" placeholder="">
<label style="font-family:MV Boli">FoodID or PackageCode</label>
<input type="text" placeholder="">
<label style="font-family:MV Boli">Date</label>
<input type="date" id="date">
<label style="font-family:MV Boli">Picking Time</label>
<select style="height: 35px;width: 350px; border-radius:6px; border-color: #ccc">
<option>Select TimeSlot</option>
<option>Boombastic BreakFast</option>
<option>Levishing Lunch</option>
<option>Asthetics Afternoon</option>
<option>Everlasting Evening</option>
<option>Deadlock Dinner</option>
</select>
<label style="font-family:MV Boli">MembershipID</label>
<input type="text" placeholder="">
<label style="font-family:MV Boli">Coupon</label>
<input type="text" placeholder="">
<label style="font-family:MV Boli">Additional Comments</label>
<input type="text" placeholder="">
<input type="button" style="font-family:MV Boli" value="Cook For Me">
</form>
</div>
</body>
</html>
<!-- Coded by Soleman Hossain 2021682 042 -->