-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsales.html
72 lines (57 loc) · 1.51 KB
/
sales.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<title>Pat's Salmon Cookie Stand</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<link href='https://fonts.googleapis.com/css?family=Great+Vibes' rel='stylesheet' type='text/css' />
</head>
<body>
<h1> Pat's Salmon Cookie Stand</h1>
<img src="img/salmon.png" width="300" alt="Salmon Logo" title="Salmon Logo" />
<table id="standTime">
<th>Location</th>
<th>10AM</th>
<th>11AM</th>
<th>12PM</th>
<th>1PM</th>
<th>2PM</th>
<th>3PM</th>
<th>4PM</th>
<th>5PM</th>
<th>Total</th>
<tr id="pike"></tr>
<tr id="seatac"></tr>
<tr id="southcenter"></tr>
<tr id="bellSq"></tr>
<tr id="alki"></tr>
<tr id="ulElement"></tr>
</table>
<form id="newStandForm">
<fieldset>
<legend>Add New Location</legend>
<p>
<label for="place">New Location</label><br />
<input type="text" id="place" />
</p>
<p>
<label for="minCustHour">Min Customer</label><br />
<input type="text" id="minCustHour" />
</p>
<p>
<label for="maxCustHour">Max Customer</label><br />
<input type="text" id="maxCustHour" />
</p>
<p>
<label for="avgCookieCust">Avg Cookies/Cust</label><br />
<input type="text" id="avgCookieCust" />
</p>
<p>
<label for="Store ID">Store ID</label>
<input type="text" id="storeID" />
</p>
<button type="click" id="addButton">Submit New Location</button>
</fieldset>
</form>
<script src="app.js"></script>
</body>
</html>