x
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
<table class="table">
<caption>
A list of your recent invoices.
</caption>
<thead>
<tr>
<th>Invoice</th>
<th>Status</th>
<th>Method</th>
<th class="text-end">Amount</th>
</tr>
</thead>
<tbody>
<tr>
<th>INV001</th>
<td>Paid</td>
<td>Credit Card</td>
<td class="text-end">$250.00</td>
</tr>
<tr>
<th>INV002</th>
<td>Pending</td>
<td>PayPal</td>
<td class="text-end">$150.00</td>
</tr>
<tr>
<th>INV003</th>
<td>Unpaid</td>
<td>Transfer</td>
<td class="text-end">$350.00</td>
</tr>
<tr>
<th>INV004</th>
<td>Paid</td>
<td>Credit Card</td>
<td class="text-end">$450.00</td>
</tr>
<tr>
<th>INV005</th>
<td>Paid</td>
<td>PayPal</td>
<td class="text-end">$550.00</td>
</tr>
<tr>
<th>INV006</th>
<td>Pending</td>
<td>Bank Transfer</td>
<td class="text-end">$200.00</td>
</tr>
<tr>
<th>INV007</th>
<td>Unpaid</td>
<td>Credit Card</td>
<td class="text-end">$300.00</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="3">Total</td>
<td class="text-end">$2,500.00</td>
</tr>
</tfoot>
</table>
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
<table class="table">
<caption>
A list of your recent invoices.
</caption>
<thead>
<tr>
<th>Invoice</th>
<th>Status</th>
<th>Method</th>
<th class="text-end">Amount</th>
</tr>
</thead>
<tbody>
<tr>
<th>INV001</th>
<td>Paid</td>
<td>Credit Card</td>
<td class="text-end">$250.00</td>
</tr>
<tr>
<th>INV002</th>
<td>Pending</td>
<td>PayPal</td>
<td class="text-end">$150.00</td>
</tr>
<tr>
<th>INV003</th>
<td>Unpaid</td>
<td>Transfer</td>
<td class="text-end">$350.00</td>
</tr>
<tr>
<th>INV004</th>
<td>Paid</td>
<td>Credit Card</td>
<td class="text-end">$450.00</td>
</tr>
<tr>
<th>INV005</th>
<td>Paid</td>
<td>PayPal</td>
<td class="text-end">$550.00</td>
</tr>
<tr>
<th>INV006</th>
<td>Pending</td>
<td>Bank Transfer</td>
<td class="text-end">$200.00</td>
</tr>
<tr>
<th>INV007</th>
<td>Unpaid</td>
<td>Credit Card</td>
<td class="text-end">$300.00</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="3">Total</td>
<td class="text-end">$2,500.00</td>
</tr>
</tfoot>
</table>
CSS is not required or multiple files are needed, check the notes.
Java Script is not required or multiple files are needed, check the notes.