-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsales.html
More file actions
61 lines (50 loc) · 1.66 KB
/
sales.html
File metadata and controls
61 lines (50 loc) · 1.66 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
<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>Cookies Sales</title>
<link rel="stylesheet" href="css/sales.css">
</head>
<body>
<header>
<img src="img/salmon.png">
<span>Pat Salmon's Cookies</span>
<nav>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="#">ABOUT US</a></li>
<li><a href="#">CONTACT US</a></li>
</ul>
</nav>
</header>
<main>
<form id="locationForm">
<fieldset>
<label for="nameField">Name</label>
<input type="text" id="nameField" name="nameField">
<br>
<label for="minCustomers">Min Customers</label>
<input type="number" id="minCustomers" name="minCustomers">
<br>
<label for="maxCustomers">Max Customers</label>
<input type="number" id="maxCustomers" name="maxCustomers">
<br>
<label for="avgCookies">Average Cookies</label>
<input type="number" id="avgCookies" name="avgCookies" step="any">
<input type="submit">
</fieldset>
</form>
<div id="table-div">
</div>
</main>
<div id="newLocation">
</div>
<footer>
<span>© All Rights Reserved</span>
<p>Call Us: +03 3233 55132</p>
<p>info@patsalmonscookies</p>
</footer>
<script src="javascript/app.js"></script>
</body>
</html>