-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
69 lines (60 loc) · 931 Bytes
/
index.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
<html>
<body>
<!--<table border="2">
<caption>Demo</caption>
<tr>
<td>row 1, cell 1</td>
<td>row 2, cell 2</td>
<td><img src=“sampleImage.JPEG” alt=“hint”></td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
<td><img src=“sampleImage.JPEG” alt=“hint”></td>
</tr>
</table>
<table border=“1”>
<caption>Demo</caption>
<tr>
<th>header 1</th>
<th>header 2</th>
</tr>
<tr>
<td>row 1, cell 1</td>
<td>row 2, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>-->
<table border="1">
<thead>
<tr>
<th></th>
<th>Month</th>
<th>Savings</th>
</tr>
</thead>
<tbody>
<tr>
<th>header 2</th>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<th>header 2</th>
<td>February</td>
<td>$80</td>
</tr>
</tbody>
<tfoot>
<tr>
<th>header 2</th>
<td>Sum</td>
<td>$180</td>
</tr>
</tfoot>
</table>
</body>
</html>