-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2017_sales_by_quarter.html
63 lines (58 loc) · 1.92 KB
/
2017_sales_by_quarter.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
<!DOCTYPE html>
<!-- This website template was created by: Mayer Alvarez Vivanco, Today's Date -->
<html lang="en">
<head>
<title>2017 Sales by Quarter</title>
<link rel="stylesheet" href="2017_sales_by_quarter_styles.css">
<meta charset="utf-8">
</head>
<body>
<div id="container">
<!-- Use the main area to add the main content of the webpage -->
<main>
<table>
<caption>2017 Sales by Quarter</caption>
<tr>
<th>Product</th>
<th>Quarter 1</th>
<th>Quarter 2</th>
<th>Quarter 3</th>
<th>Quarter 4</th>
</tr>
<tr>
<th>Tablets</th>
<td>$24,500</td>
<td>$21,525</td>
<td>$20,217</td>
<td>$28,575</td>
</tr>
<tr>
<th>Monitors</th>
<td>$12,825</td>
<td>$12,400</td>
<td>$11,900</td>
<td>$14,233</td>
</tr>
<tr>
<th>Laptops</th>
<td>$33,000</td>
<td>$32,750</td>
<td>$31,595</td>
<td>$32,465</td>
</tr>
<tr>
<th>Desktops</th>
<td>$21,478</td>
<td>$20,895</td>
<td>$18,200</td>
<td>$21,625</td>
</tr>
</table>
</main>
<!-- Use the footer area to add webpage footer content -->
<footer>
<p>Designed by: Mayer Alvarez Vivanco</p>
</footer>
</div>
</body>
</html>