-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
45 lines (44 loc) · 1.44 KB
/
cart.html
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
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="normalize.css">
<link rel="stylesheet" href="main.css">
<title>Document</title>
</head>
<body>
<div class="cart-background">
<h3>Your shopping cart</h3>
<div>
<table class = "cart-table">
<thead>
<tr>
<td></td>
<td class="cell-long">ITEM</td>
<td>AMOUNT</td>
<td>PRICE</td>
<td>TOTAL</td>
</tr>
</thead>
<tbody>
<tr>
<td><img src="img/item1.png" width="60px"></td>
<td>캔버스</td>
<td>1</td>
<td>27000</td>
<td>27000</td>
</tr>
<tr>
<td colspan="5" style="text-align: right;">총가격 : 27000</td>
</tr>
</tbody>
</table>
<button class="btn">구매하기</button>
<button type="button" class = "btn"
onclick = "location.href='index.html';">이전</button>
</div>
</div>
</body>
</html>