Basket
| Remove | Item | Quantity | Price | Total | |
|---|---|---|---|---|---|
|
|
Example Course Title |
£15.00 | £30.00 | ||
|
|
Example Course Title |
£15.00 | £30.00 | ||
| Subtotal: £120.00 | |||||
| VAT: £24.00 | |||||
| Total inc VAT: £144.00 | |||||
<div class="responsive-table basket">
<table>
<thead>
<tr>
<th width="48">Remove</th>
<th width="140"></th>
<th>Item</th>
<th width="80">Quantity</th>
<th class="measure">Price</th>
<th class="measure">Total</th>
</tr>
</thead>
<tbody>
<tr>
<td><button class="button-icon"><i class="material-icons">close</i></button></td>
<td>
<div class="image-contained">
<img src="vc-site-patterns/img/example-16x9.svg" alt="Course Image" />
</div>
</td>
<td>
<p>Example Course Title</p>
</td>
<td class="quantity"><input type="number" /></td>
<td class="measure unit-price">£15.00</td>
<td class="measure total-price">£30.00</td>
</tr>
</tbody>
<tfoot>
<tr><td class="measure total" colspan="6">Subtotal: £120.00</td></tr>
<tr><td class="measure total" colspan="6">VAT: £24.00</td></tr>
<tr><td class="measure total total--large" colspan="6">Total inc VAT: £144.00</td></tr>
</tfoot>
</table>
</div>