-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsalesReport.html
71 lines (67 loc) · 1.53 KB
/
salesReport.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Lab 3</title>
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<link rel="stylesheet" type="text/css" href="css/foundation.min.css">
<link rel="stylesheet" type="text/css" href="css/app.css">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
</head>
<body>
<div class="row">
<h1>Gary's Rifles!</h1>
<h2>Here's your sales report for this month</h2>
<table>
<tr>
<th>Town</th>
<th>Locks Sold</th>
<th>Stocks Sold</th>
<th>Barrels Sold</th>
<th>Total Sales</th>
</tr>
<tr>
<td>Louisville</td>
<td>fd</td>
<td>sd</td>
<td>he</td>
<td>hi</td>
</tr>
<tr>
<td>Arizona</td>
<td>fd</td>
<td>sd</td>
<td>he</td>
<td>hi</td>
</tr>
<tr>
<td>Cleveland</td>
<td>fd</td>
<td>sd</td>
<td>he</td>
<td>hi</td>
</tr>
<tr>
<td>Sacramento</td>
<td>fd</td>
<td>sd</td>
<td>he</td>
<td>hi</td>
</tr>
<tr>
<td>Arlington</td>
<td>fd</td>
<td>sd</td>
<td>he</td>
<td>hi</td>
</tr>
</table>
<div data-alert class="alert-box warning round">
You didn't sell a whole gun this month.
<a href="#" class="close">×</a>
</div>
</div>
<script type="text/javascript" src="./js/modernizr.js"></script>
<script type="text/javascript" src="./lib/angular/angular.js"></script>
</body>
</html>