-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsales.html
More file actions
46 lines (46 loc) · 1.66 KB
/
sales.html
File metadata and controls
46 lines (46 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
<!DOCTYPE html>
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab' rel='stylesheet' type='text/css'>
<title>Salmon Cookie Stand</title> <link rel="stylesheet" href="style.css">
</head>
<body>
<!-- <img src = chinook.jpg> -->
<!-- <header>
<div class= "inner"> Pat's Salmon Cookies Inventory Projections</div>
</header> -->
<header>
<div class="inner">
<!-- <div>Pat's Cookies</div> -->
<img src="https://github.com/codefellows/seattle-201d8/blob/master/class-09-advanced_css_layout/lab/assets/fish.jpg?raw=true">
<ul>
<li>Admin</li>
<li>Payroll</li>
<li>Orders</li>
<li>Contact Us</li>
</ul>
</div>
</header>
<div class="banner">
<p>Pat's Salmon Cookies</p>
<img id="salmon" src="https://github.com/codefellows/seattle-201d8/blob/master/class-09-advanced_css_layout/lab/assets/salmon.png?raw=true">
</div>
<!-- <img src = salmon.png> -->
<table id="salesData"></table>
<tr id="tableHeader"></tr>
<form id="salesForm">
<fieldset>
<label for="minCust">Minimum Customers Per Hour:</label>
<input id="minCust" type="number" name="minCust">
<label for="maxCust">Maximum Customers Per Hour:</label>
<input id="maxCust" type="number" name="maxCust">
<label for="avgCookiePerCust">Average Cookies Per Customer:</label>
<input id="avgCookiePerCust" type="number" name="avgCookiePerCust">
<label for="where">Store Name:</label>
<input id="where" type="text" name="where">
</fieldset>
<input type="submit" value="Submit Me">
</form>
<script src="app.js"></script>
</body>
</html>