-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathform.html
More file actions
95 lines (70 loc) · 2.52 KB
/
form.html
File metadata and controls
95 lines (70 loc) · 2.52 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
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
<!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>Bakers Quartet - Orders</title>
<link rel="stylesheet" type="text/css" href="styles.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=Kurale&display=swap" rel="stylesheet">
<script type="module" src="scripts/items.js"></script>
</head>
<body>
<!--Navbar Section Start-->
<header>
<div class="nav">
<a href="#" class="logo-1"><img src="images\bake__2_.png"></a>
<div class="bx bx-menu" id="menu-icon"></div>
<ul class="navlist">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="product.html">The Goods</a></li>
<li><a href="form.html">Order Now</a></li>
</ul>
<a href="form.html" class="top-btn">Place an Order!</a>
</div>
</header>
<!--Navbar Section End-->
<!--Form Section Starts -->
<form id="new-item-form">
<label for="name">Name:</label>
<input type="text" id="name" name="name"><br><br>
<label for="description">Description:</label>
<textarea id="description" name="description"></textarea><br><br>
<label for="price">Price:</label>
<input type="number" id="price" name="price"><br><br>
<input type="submit" value="Add Item">
</form>
<!--Form Section Starts-->
<!--Footer Section Start-->
<footer>
<img class="logo-2" src="images/bake__2_.png" width="150" height="150">
<div class="loca">
<h3 class="loca-title">Locations</h3>
<ul class="loca-list">
<li><a class="dallas" href="#">Dallas</a></li>
<li><a class="wash" href="#">Washington</a></li>
<li><a class="new" href="#">New York</a></li>
<li><a class="moon" href="#">The Moon</a></li>
</ul>
</div>
<div class="cust">
<h3 class="cust-title">Customer Service</h3>
<ul class="cust-list">
<li><a class="faq" href="#">FAQ</a></li>
<li><a class="con" href="#">Contact Us</a></li>
<li><a class="ship" href="#">Shipping Info</a></li>
</ul>
</div>
<div class="reso">
<h3 class="reso-title">Other Resources</h3>
<li><a class="face" href="#">Facebook</a></li>
<li><a class="insta" href="#">Instagram</a></li>
<li><a class="twit" href="#">Twitter</a></li>
</div>
</footer>
</body>
<!-- Footer Section End-->
</html>