-
Notifications
You must be signed in to change notification settings - Fork 0
/
sales.html
121 lines (118 loc) · 4.19 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Salmon Cookies Company - Sales</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Russo+One&display=swap" rel="stylesheet">
</head>
<body>
<header id="header">
<img src="img/seattlesky.png" alt="seattle skyline black and white">
<h1>Pat's Salmon Cookies</h1>
<nav>
<ul id="headerUl">
<li><a href="index.html">Home</a></li>
<li><a href="#sales">Sales</a></li>
</ul>
</nav>
</header>
<main id="salesData">
<h2>Sales Data For All Locations</h2>
<table id="storeLocationTable">
<thead>
<tr>
<th></th>
<th>6am</th>
<th>7am</th>
<th>8am</th>
<th>9am</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>6pm</th>
<th>7pm</th>
<th>Daily Location Total</th>
</tr>
<tfoot id="tfooter">
</tfoot>
</thead>
</table>
</main>
<section id="locationFormSection">
<form id="locationForm">
<fieldset>
<legend>Input data for new Salmon Cookies store</legend>
<label for="storeLocation">Store Location:</label>
<input id="storeLocation" type="text" required />
<br>
<label for="minCustPerHour">Minimum Customers Per Hour</label>
<input id="minCustPerHour" type="text" required />
<br>
<label for="maxCustPerHour">Maximum Customers Per Hour</label>
<input id="maxCustPerHour" type="text" required />
<br>
<label for="cookiesPerSale">Average Cookies Bought Per Customer</label>
<input id="cookiesPerSale" type="text" required />
<button id="submit">Submit Form</button>
<button type="reset" value="Reset">Reset Form</button>
</fieldset>
</form>
</section>
<img src="/img/salmon.png" class="salespagepic1" alt="">
<img src="/img/chinook.jpeg" class="salespagepic2" alt="">
</body>
<footer>
<h3>Locations</h3>
<section class="location-info">
<div>Seattle</div>
<div>Pike Place Market</div>
<div>Seattle, WA</div>
<div>111-222-3333</div>
<div>Open: 6AM-8PM</div>
</section>
<section class="location-info">
<div>Tokyo</div>
<div>Famous Imperial Palace</div>
<div>Tokyo, Japan</div>
<div>222-333-4444</div>
<div>Open: 6AM-8PM</div>
</section>
<section class="location-info">
<div>Dubai</div>
<div>The Burj Khalifa Hotel</div>
<div>Dubai, United Arab Emirates</div>
<div>333-444-5555</div>
<div>Open: 6AM-8PM</div>
</section>
<section class="location-info">
<div>Paris</div>
<div>The Eiffel Tower</div>
<div>Paris, France</div>
<div>444-555-6666</div>
<div>Open: 6AM-8PM</div>
</section>
<section class="location-info">
<div>Lima</div>
<div>Plaza De Armas</div>
<div>Lima, Peru</div>
<div>555-666-7777</div>
<div>Open: 6AM-8PM</div>
</section>
<p>“Sometimes me think, what is friend? And then me say: a friend is someone to share last cookie with.” - Cookie
Monster
</p>
</footer>
<script src="js/app.js"></script>
</html>