Skip to content

Instantly share code, notes, and snippets.

@kriskornel
Created January 17, 2021 09:18
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/04704baf85641cd558547fecb1fd78a9 to your computer and use it in GitHub Desktop.
Save kriskornel/04704baf85641cd558547fecb1fd78a9 to your computer and use it in GitHub Desktop.
Learning html - creating invoice table
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Invoice table</title>
</head>
<body>
<table border="1">
<tr>
<th>No Invoice</th>
<th>Item SKU</th>
<th>Description</th>
<th>Unit Price</th>
<th>Quantity</th>
</tr>
<tr>
<td colspan="5">&nbsp;</td>
</tr>
<tr>
<td>1</td>
<td>0001</td>
<td>New Keyboard Logitech</td>
<td>350000</td>
<td>1</td>
</tr>
<tr>
<td>1</td>
<td>0002</td>
<td>New Keyboard Monitor</td>
<td>2000000</td>
<td>1</td>
</tr>
<tr>
<td colspan="3" align="right">Total</td>
<td>23500000</td>
<td>2 item(s)</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment