-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstep3.html
More file actions
114 lines (84 loc) · 3.13 KB
/
step3.html
File metadata and controls
114 lines (84 loc) · 3.13 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>STEP BY STEP</title>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&family=Noto+Sans+KR:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/step3.css">
</head>
<body>
<header class="header">
<div class="logo"><a href="/step1.html"> STEP By STEP </a> </div>
<nav class="menu">
<a href="#">BmI</a>
<a href="/step10.html">Stepmag</a>
<a href="">The Fit Loo</a>
</nav>
<div class="auth">
<a href="#">🔍</a>
<a href="/step5.html">로그인</a>
</div>
</header>
<section class="hero">
<div class="hero-text">
<p>스포츠 & 다이어트 푸드는</p>
<h1>STEP BY STEP 에서</h1>
</div>
<img src="/img/카트.png" alt="카트 이미지" width="500" height="300">
</section>
<section class="shop">
<div class="category">
<span class="active">Sportwear Shoes Machine Food</span>
</div>
<div class="product-grid">
<div class="card">
<img src="/img/1.png" alt="Bloom Motion">
<div class="card-text">
<p class="type">여성 스포츠 웨어</p>
<h3>Bloom Motion</h3>
<p class="price">119,000 원</p>
<a href="https://www.xexymix.com/shop/shopdetail.html?branduid=2073708&xcode=027&mcode=006&scode=&type=
Y&sort=manual&cur_code=027006&search=&GfDT=aG13VA%3D%3D"><button>구매 사이트로 가기</button></a>
</div>
</div>
<div class="card">
<img src="/img/2.png" alt="Runen wip">
<div class="card-text">
<p class="type">남성 스포츠 웨어</p>
<h3>Boom Mention</h3>
<p class="price">89,000 원</p>
<a href="https://www.halfclub.com/product/349024730"><button>구매 사이트로 가기</button></a>
</div>
</div>
<div class="card">
<img src="/img/3.png" alt="Wip & Wip">
<div class="card-text">
<p class="type">여성 스포츠 웨어</p>
<h3> Runen wip</h3>
<p class="price">49,000 원</p>
<a href="https://www.xexymix.com/shop/shopdetail.html?branduid=2073705&xcode=027&mcode=
001&scode=0&search=&GfDT=bmp1W10%3D"><button>구매 사이트로 가기</a>
</div>
</div>
<div class="card">
<img src="/img/4.png" alt="Runen wip">
<div class="card-text">
<p class="type">트레이닝 웨어</p>
<h3>Wip & Wip</h3>
<p class="price">89,000 원</p>
<a href="https://www.xexymix.com/shop/shopdetail.html?
branduid=2073902&xcode=025&mcode=001&scode=001&type=Y&sort=manual&cur
_code=025&search=&GfDT=bmt9W11H"><button>구매 사이트로 가기</button></a>
</div>
</div>
</div>
</section>
<section class="bottom-banner">
<div class="banner-text">
<p> 빠르고 안전한 배송은</p>
<h2>STEP BY STEP !</h2>
</div>
<img src="/img/aa540c1e04a7bfeb5b39e9303fbc29020ce1f7ff.png" alt="배송 이미지">
</section>
</body>
</html>