Created
February 19, 2020 23:53
-
-
Save joseolinda/a1fd8f39e928de86aaa5c45cdf6aaa6b to your computer and use it in GitHub Desktop.
Trechos HTML para aula de PWE2 - 19/02/2020
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<table> | |
<caption>A complex table</caption> | |
<thead> | |
<tr> | |
<th colspan="3">Invoice #123456789</th> | |
<th>14 January 2025 | |
</tr> | |
<tr> | |
<td colspan="2"> | |
<strong>Pay to:</strong><br> | |
Acme Billing Co.<br> | |
123 Main St.<br> | |
Cityville, NA 12345 | |
</td> | |
<td colspan="2"> | |
<strong>Customer:</strong><br> | |
John Smith<br> | |
321 Willow Way<br> | |
Southeast Northwestershire, MA 54321 | |
</td> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<th>Name / Description</th> | |
<th>Qty.</th> | |
<th>@</th> | |
<th>Cost</th> | |
</tr> | |
<tr> | |
<td>Paperclips</td> | |
<td>1000</td> | |
<td>0.01</td> | |
<td>10.00</td> | |
</tr> | |
<tr> | |
<td>Staples (box)</td> | |
<td>100</td> | |
<td>1.00</td> | |
<td>100.00</td> | |
</tr> | |
</tbody> | |
<tfoot> | |
<tr> | |
<th colspan="3">Subtotal</th> | |
<td> 110.00</td> | |
</tr> | |
<tr> | |
<th colspan="2">Tax</th> | |
<td> 8% </td> | |
<td>8.80</td> | |
</tr> | |
<tr> | |
<th colspan="3">Grand Total</th> | |
<td>$ 118.80</td> | |
</tr> | |
</tfoot> | |
</table> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment