-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathheader.html
More file actions
48 lines (48 loc) · 1.46 KB
/
Copy pathheader.html
File metadata and controls
48 lines (48 loc) · 1.46 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
<div class="top">
<nav class="top-nav">
<button type="button" class="top-nav-modal">
<i class="bx bxs-grid"></i>
</button>
<a href="index.html" class="top-title">16조 쇼핑몰</a>
<a href="cart.html" class="top-nav-cart">
<i class="bx bx-cart"></i>
<strong class="top-cart-count count-mobile"></strong>
</a>
<div class="top-category">
<ul class="category-box">
<li class="category-item">
<a href="index.html#home">베스트 상품</a>
</li>
<li class="category-item">
<a href="index.html#goods">상품</a>
</li>
<li class="category-item">
<a href="wishlist.html">위시리스트</a>
</li>
<li class="category-item">
<div class="top-cart">
<a href="cart.html">장바구니</a>
<strong class="top-cart-count count-desk"></strong>
</div>
</li>
</ul>
</div>
</nav>
<div class="top-nav-category">
<ul class="category-box">
<li class="category-item">
<a href="index.html#home">New</a>
</li>
<li class="category-item">
<a href="index.html#goods">Goods</a>
</li>
<li class="category-item">
<a href="wishlist.html">Wish</a>
</li>
<li class="category-item"><a href="cart.html">Cart</a></li>
</ul>
<button type="button" class="category-close">
<i class="bx bx-x" style="color: #ffffff"></i>
</button>
</div>
</div>