-
Notifications
You must be signed in to change notification settings - Fork 1
/
conten_pinjam.php
39 lines (38 loc) · 2.21 KB
/
conten_pinjam.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
36
37
38
39
<div id="content" class="right">
<h2>Shopping Cart</h2>
<table width="700" border="0" cellpadding="5" cellspacing="0">
<tr bgcolor="#395015">
<th width="168" align="left">Item</th>
<th width="188" align="left">Description</th>
<th width="60" align="center">Quantity</th>
<th width="80" align="right">Price</th>
<th width="80" align="right">Total</th>
<th width="64"> </th>
</tr>
<tr bgcolor="#41581B">
<td><img src="images/product/01.jpg" alt="flower image 1" /></td>
<td>Ut eu feugiat</td>
<td align="center"><input name="quantity1" type="text" id="quantity1" value="1" size="6" maxlength="2" /> </td>
<td align="right">$240</td>
<td align="right">$240</td>
<td align="center"> <a href="#"><img src="images/remove.png" alt="remove" /><br />Remove</a> </td>
</tr>
<tr bgcolor="#41581B">
<td><img src="images/product/02.jpg" alt="flower image 2" /> </td>
<td>Donec Est Nisi (Validate <a href="http://validator.w3.org/check?uri=referer" rel="nofollow"><strong>XHTML</strong></a> & <a href="http://jigsaw.w3.org/css-validator/check/referer" rel="nofollow"><strong>CSS</strong></a>)</td>
<td align="center"><input name="quantity2" type="text" id="quantity2" value="2" size="6" maxlength="2" /> </td>
<td align="right">$160</td>
<td align="right">$320</td>
<td align="center"> <a href="#"><img src="images/remove.png" alt="remove" /><br />Remove</a> </td>
</tr>
<tr bgcolor="#41581B">
<td colspan="3">Have you modified item quantities? Please <a href="shoppingcart.html"><strong>Update</strong></a> the Cart. </td>
<td align="right"><h4>All Total:</h4></td>
<td align="right"><h4>$560</h4></td>
<td> </td>
</tr>
</table>
<div class="cleaner h20"></div>
<div class="right"><a href="checkout.html" class="button">checkout</a></div>
<div class="cleaner h20"></div>
</div>