-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsales.html
More file actions
36 lines (29 loc) · 1008 Bytes
/
sales.html
File metadata and controls
36 lines (29 loc) · 1008 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Cookie Sales</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<form id="loc-form">
<fieldset>
<legend>Add a new location, Pat!</legend>
<label for="Location"> Location: </label>
<input name="Location" type="text" />
<label for="Min"> Min: </label>
<input name="Min" type="number" step="1"/>
<label for="Max"> Max: </label>
<input name="Max" type="number" step="1" />
<label for="Average"> Average: </label>
<input name="Average" type="number" step="any" />
<div class="submit"><button type="submit">add location</submit></div>
</fieldset>
</form>
<h1>Number of Cookies Needed Per Hour at Each Location</h1>
<table id="cookieInfo"></table>
<div><br><br><br></div>
<h1>Number of Cookie Tossers Needed Per Hour at Each Location</h1>
<table id="tosserInfo"></table>
<script src="app.js"></script>
</body>
</html>