-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcart.html
More file actions
104 lines (103 loc) · 4.05 KB
/
Copy pathcart.html
File metadata and controls
104 lines (103 loc) · 4.05 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="ko">
<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" />
<meta name="description" content="StarBucks Clone Site" />
<meta name="keywords" content="StarBucks, Clone, Site" />
<meta name="author" content="Jason Ahn" />
<link rel="stylesheet" href="./assets/css/style.css" />
<title>장바구니</title>
</head>
<body>
<header>
<div class="sub-header">
<img src="assets/images/icons/left-chevron.svg" />
<h1 class="sub-header-title">온라인 스토어</h1>
<img src="assets/images/icons/close.svg" />
</div>
</header>
<section class="section-cart-top">
<h2>장바구니</h2>
<div class="check-row">
<div class="check-left">
<input type="checkbox" id="total-product-check" />
<label for="total-product-check">전체 선택</label>
</div>
<div class="check-right">
<button><span>선택삭제</span></button>
<button>전체삭제</button>
</div>
</div>
<div class="check-row">
<div class="check-left">
<input type="checkbox" id="general-product-check" />
<label for="general-product-check">일반 상품</label>
</div>
</div>
<div class="check-row">
<div class="check-left">
<input type="checkbox" id="product-check" />
<label for="product-check"></label>
</div>
<div class="product-cart-view">
<div class="product-view">
<img
src="assets/images/banner/스타벅스_우산.jpg"
alt="상품이미지"
/>
<div class="product-view-info">
<p>23 체리블라썸 로맨틱 문 장우산</p>
<p><span>23,000</span>원</p>
</div>
<img src="assets/images/icons/close.svg" />
</div>
<div class="product-view-count-info">
<div class="product-view-count">수량: 1개</div>
<div class="product-view-charge-info">
<p class="product-view-charge__title">주문금액</p>
<p class="product-view-charge"><span>23,000</span>원</p>
</div>
<div class="product-view-change_buy__btn">
<button type="button">주문 수정</p>
<button type="button">바로 구매</p>
</div>
</div>
</div>
</div>
</section>
<section class="section-cart-middle border-top">
<div>
<p>상품 1건 23,000원 배송비 3,000원 = 총 26,000원</p>
<p>7,000원 더 담으면 무료배송</p>
</div>
<button type="button">더 담으러 가기</button>
</section>
<section class="section-cart-bottom">
<h4>총 주문 금액</h4>
<div class="section-cart__product">
<div><span>상품금액</span><p>0원</p></div>
<div><span>할인금액</span><p>0원</p></div>
<div><span>배송비</span><p>0원</p></div>
</div>
<div class="section-cart__total-charge border-top">
<div><span>최종 결제 금액</span><p>0원</p></div>
</div>
<div class="section-cart__total-charge__info">
<p>장바구니에는 최대 20개까지 담을 수 있으며, 담긴 상품은 최대 2개월간 보관됩니다.<br/>
가격,옵션 등 정보가 변경된 경우 주문이 불가할 수 있습니다.</p>
</div>
</section>
<footer class="footer-product-cart border-top">
<div class="footer-product-cart__info">
<div>총 1건/20건</div>
<p><span>26,000</span>원</p>
</div>
<div class="footer-charge-total-btn">
<button type="button">선물하기</button>
<button type="button">구매하기</button>
</div>
</footer>
</body>
</html>