-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorder_form.html
More file actions
49 lines (43 loc) · 1.7 KB
/
order_form.html
File metadata and controls
49 lines (43 loc) · 1.7 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>links</title>
</head>
<body>
<div class="container">
<div class="header">
<img src="images/food image 2.jpg" alt="">
<h3>Delicia Tasty<br>Foods and Bakery</h3>
</div>
<div class="nav">
<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">Video</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="order_form.html">Order</a></li>
</ul>
</nav>
</div>
<h3 class="page_heading">Order Form</h3>
<div class="form_container">
<form action="" method="">
<label>Name</label>
<input type="number" value="meter" placeholder="Abdul"><br>
<label>Foods</label>
<input type="text" value="food" placeholder="MOi Moi"><br>
<label>Mobile Number</label>
<input type="number" value="meter" placeholder="08104613143"><br>
<label>Emial</label>
<input type="email" value="" placeholder="sirjeff373@gmail.com" required><br><br>
<button type="submit">Submit</button>
</form>
</div>
</div>
</div>
</body>
</html>