-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbest-set.html
More file actions
120 lines (120 loc) · 3.98 KB
/
best-set.html
File metadata and controls
120 lines (120 loc) · 3.98 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!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="main-header-top">
<div class="main-header__menu-icon">
<img src="assets/images/icons/menu.svg" alt="" />
</div>
<h1>온라인 스토어</h1>
<nav>
<ul>
<li><img src="assets/images/icons/search.svg" /></li>
<li><img src="assets/images/icons/shopping-cart.svg" /></li>
<li><img src="assets/images/icons/user.svg" /></li>
</ul>
</nav>
</div>
<div class="main-header-bottom border-under">
<nav>
<ul>
<li>메인</li>
<li>기획전</li>
<li class="active">베스트</li>
<li>마이페이지</li>
</ul>
</nav>
</div>
<div class="main-header-sub">
<nav>
<ul>
<li>케이크</li>
<li>텀블러/보온병</li>
<li>머그/컵</li>
<li>라이프스타일</li>
<li>티/커피용품</li>
<li class="active">세트</li>
</ul>
</nav>
</div>
</header>
<section class="best-product-lists">
<div class="best-product-list">
<div class="best-product">
<div class="best-product__img">
<img
src="assets/images/products/01.png"
alt="23 SS 체리 밸류 로맨틱 텀블러 355ml"
/>
<div>1</div>
</div>
<div class="best-product__info">
<p class="product-item-new">New</p>
<p class="best-product-title">
23 SS 체리 밸류 로맨틱 텀블러 355ml
</p>
<p class="best-product-price"><strong>32,000</strong>원</p>
</div>
</div>
<div class="best-product">
<div class="best-product__img">
<img
src="assets/images/products/01.png"
alt="23 SS 체리 밸류 로맨틱 텀블러 355ml"
/>
<div>2</div>
</div>
<div class="best-product__info">
<p class="product-item-new">New</p>
<p class="best-product-title">
23 SS 체리 밸류 로맨틱 텀블러 355ml
</p>
<p class="best-product-price"><strong>32,000</strong>원</p>
</div>
</div>
<div class="best-product">
<div class="best-product__img">
<img
src="assets/images/products/01.png"
alt="23 SS 체리 밸류 로맨틱 텀블러 355ml"
/>
<div>3</div>
</div>
<div class="best-product__info">
<p class="product-item-new">New</p>
<p class="best-product-title">
23 SS 체리 밸류 로맨틱 텀블러 355ml
</p>
<p class="best-product-price"><strong>32,000</strong>원</p>
</div>
</div>
<div class="best-product">
<div class="best-product__img">
<img
src="assets/images/products/01.png"
alt="23 SS 체리 밸류 로맨틱 텀블러 355ml"
/>
<div>4</div>
</div>
<div class="best-product__info">
<p class="product-item-new product-item-new-hidden">New</p>
<p class="best-product-title">
23 SS 체리 밸류 로맨틱 텀블러 355ml
</p>
<p class="best-product-price"><strong>32,000</strong>원</p>
</div>
</div>
</div>
</section>
</body>
</html>