-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorder-form.html
56 lines (47 loc) · 1.71 KB
/
order-form.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Order Form</title>
<link rel="shortcut icon" href="./images/rice.jpg" type="image/x-icon">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Order Form</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="food-table.html">Food Table</a></li>
<li><a href="videos.html">Videos</a></li>
<li><a href="image-gallery.html">Image Gallery</a></li>
<li><a href="order-form.html">Order Form</a></li>
</ul>
</nav>
<div class="content">
<h2>Place Your Order</h2>
<form>
<label for="name">Name</label>
<input type="text" id="name" name="name">
<label for="email">Email</label>
<input type="email" id="email" name="email">
<label for="phone">Phone Number</label>
<input type="tel" id="phone" name="phone">
<label for="address">Address</label>
<input type="text" id="address" name="address">
<label for="dish">Select Dish</label>
<select id="dish" name="dish">
<option value="jollof-rice">Jollof Rice</option>
<option value="pounded-yam">Pounded Yam and Egusi Soup</option>
<option value="suya">Suya</option>
<option value="fried-plantains">Fried Plantains</option>
<option value="moi-moi">Moi Moi</option>
</select>
<button type="submit">Submit Order</button>
</form>
</div>
</body>
</html>