-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathdetail.html
56 lines (56 loc) · 2.14 KB
/
detail.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
46
47
48
49
50
51
52
53
54
55
56
<!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="./css/index.css" />
<title>React Clean Code Shopping Cart</title>
</head>
<body>
<div class="root">
<header class="flex-col-center">
<h1 class="global-nav-title">상품 상세</h1>
<br />
<div class="global-nav-button-box">
<a class="global-nav-button" href="./index.html">홈으로</a>
<a class="global-nav-button" href="./list.html">상품 목록</a>
<a class="global-nav-button" href="./detail.html">상품 상세</a>
<a class="global-nav-button" href="./cart.html">장바구니</a>
<a class="global-nav-button" href="./order.html">주문/결제</a>
<a class="global-nav-button" href="./orderList.html">주문 목록</a>
<a class="global-nav-button" href="./orderDetail.html">주문 상세</a>
</div>
</header>
<nav class="nav flex justify-around">
<div class="flex-center">
<h1 class="nav-title">CLEAN CODE SHOP</h1>
</div>
<div class="flex gap-15">
<button class="nav-button">장바구니</button>
<button class="nav-button">주문목록</button>
</div>
</nav>
<div class="product-detail-container">
<div class="flex-col-center w-520">
<img
class="w-480 h-480 mb-10"
src="./assets/images/product.png"
alt="PET보틀-정사각(420ml)"
/>
<div class="product-detail-info">
<span class="product-detail-info__name">PET보틀-정사각(420ml)</span>
<hr class="divide-line-gray my-20" />
<div class="flex justify-between">
<span>금액</span>
<span class="product-detail-info__price">43,000원</span>
</div>
</div>
<button class="product-detail-button flex-center mt-20">
장바구니
</button>
</div>
</div>
</div>
</body>
</html>