-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsales.html
29 lines (29 loc) · 954 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" type="text/css" href="salesstyle.css">
</head>
<body>
<h1>Pat and Donna's Salmon Cookie Sales</h1>
<table id='store_table'>
<thead id='table_header'>
</thead>
<tbody id='table_body'>
</tbody>
<tfoot id='table_footer'>
</tfoot>
</table>
<form id='store_form'>
<input type="text" placeholder="Store Name" name="store_name">
<input type="number" placeholder="Minimum Customers per Hour" name="min_cust">
<input type="number" placeholder="Maximum Customers per Hour" name="max_cust">
<input type="number" placeholder="Average Cookies per Customer" name="avg_cookies">
<input type="submit">
</form>
<img src="Salmon-img/salmon.png">
<p><a href=index.html>Main Page</a></p>
<script src='app.js'></script>
</body>
</html>