-
Notifications
You must be signed in to change notification settings - Fork 5
/
cart.php
35 lines (28 loc) · 827 Bytes
/
cart.php
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
<?php include("inc/header.php"); ?>
<div class="container">
<div class="col-6 center-block">
<table class="table table-hover table-bordered">
<thead>
<tr>
<th scope="col">Product</th>
<th scope="col">Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Mark</td>
<td>Otto</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
</tr>
<tr>
<th scope="row">3</th>
<td colspan="2">Larry the Bird</td>
</tr>
</tbody>
</table>
</div>
</div>
<?php include("inc/footer.php"); ?>