-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlemonade.html
56 lines (56 loc) · 1.95 KB
/
lemonade.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
<!DOCTYPE html>
<html lang="en" id="lemonade">
<head>
<title>My Lemonade Stand</title>
<script src="src/js/init.js"></script>
<link href="favicon.ico" rel="shortcut icon" type="image/x-icon">
<link href="styles.css" rel="stylesheet" type="text/css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
th, td {
border: 2px solid;
}
</style>
</head>
<body>
<table>
<caption>My Lemonade Stand Sales</caption>
<thead>
<tr>
<th></th>
<th style="border:2px solid" colspan="2">Amount Sold</th>
</tr>
<tr>
<th style="border:2px solid">Days</th>
<th style="border:2px solid">Cups</th>
<th style="border:2px solid">Big Cups</th>
</tr>
</thead>
<tbody>
<tr>
<td style="border:2px solid">Friday</td>
<td style="border:2px solid">12</td>
<td style="border:2px solid">15</td>
</tr>
<tr>
<td style="border:2px solid">Saturday</td>
<td style="border:2px solid">20</td>
<td style="border:2px solid">10</td>
</tr>
<tr>
<td style="border:2px solid">Sunday</td>
<td style="border:2px solid">8</td>
<td style="border:2px solid">12</td>
</tr>
</tbody>
<tfoot>
<tr>
<td style="border:2px solid">Total</td>
<td style="border:2px solid">40</td>
<td style="border:2px solid">37</td>
</tr>
</tfoot>
</table>
</body>
</html>