Skip to content

Instantly share code, notes, and snippets.

@kriskornel
Created January 17, 2021 09:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kriskornel/9c69ffc8578529167199c2764cf3c5c6 to your computer and use it in GitHub Desktop.
Save kriskornel/9c69ffc8578529167199c2764cf3c5c6 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<table border="1">
<tr>
<th>Qty</th>
<th>Product</th>
<th>Serial#</th>
<th>Description</th>
<th>Subtotal</th>
</tr>
<tr>
<td>1</td>
<td>Need for Speed IV</td>
<td>247-925-726</td>
<td>Wes Anderson umami biodiesel</td>
<td>$50.00</td>
</tr>
<tr>
<td>1</td>
<td>Monster DVD</td>
<td>735-845-642</td>
<td>Terry Richardson helvetica tousled street art master</td>
<td>$10.70</td>
</tr>
<tr>
<td>1</td>
<td>Grown Ups Blue Ray</td>
<td>422-568-642</td>
<td>Tousled lomo lettepress</td>
<td>$22.99</td>
</tr>
<tr>
<td colspan="3"></td>
<td colspan="2"><b>Amount Due 2/22/2014</b></td>
</tr>
<tr>
<td colspan="3"></td>
<td><b>Subtotal</b></td>
<td>$250.30</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment