-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApparel_Shop.html
More file actions
70 lines (70 loc) · 2.33 KB
/
Apparel_Shop.html
File metadata and controls
70 lines (70 loc) · 2.33 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
<!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">
<title>Shop Example</title>
</head>
<!-- 헤더 -->
<header>
<!-- 네비게이션 영역 -->
<nav>
<h1>APPAREL SHOP</h1>
<div>
<a href="#">HOME</a>
<a href="products.html">PRODUCTS</a>
</div>
</nav>
<img src="https://image1.marpple.co/files/u_2831204/2023/9/original/9085b4a13c8e203fca96be7a6d2fbb82055e43e51.png?q=92&w=1480&f=jpeg&bg=f6f6f6" alt="apparel" width="100" height="100">
</header>
<!-- 본문 영역 -->
<section>
<article>
<img src="https://image1.marpple.co/files/u_193535/2022/4/original/d0b1c1213ee8e4feb8a01ea961cba0d08247cd1a1.png?q=92&w=1480&f=jpeg&bg=f6f6f6" alt="apparel2" width="100" height="100">
<hr>
<h2>About Our Company</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Pariatur voluptas fuga obcaecati repellendus quidem dolorem enim ut quod mollitia, quo, exercitationem optio veniam! Eos quae quaerat perspiciatis magni reiciendis beatae.</p>
</article>
<hr>
<div>
<h2>Contact Us</h2>
</div>
<div>
<h2>More</h2>
</div>
<div>
<div>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSC_28O28-hCpsAJtpNR7bNAGPYYM_7DTeF7g&s" alt="icon" width="100" height="100">
<span>Email Address</span>
<span>crew@nodecrew.kr</span>
</div>
<hr>
<div>
<img src="https://cdn-icons-png.flaticon.com/512/809/809194.png" alt="icon" width="100" height="100">
<span>Phone Number</span>
<span>010-1234-5678</span>
</div>
<hr>
<div>
<img src="https://cdn-icons-png.flaticon.com/512/4226/4226980.png" alt="icon" width="100" height="100">
<span>Location</span>
<span>서울특별시 도봉구</span>
</div>
<hr>
<div>
<img src="https://cdn-icons-png.flaticon.com/512/992/992700.png" alt="icon" width="100" height="100">
<span>Working Hours</span>
<span>9am ~ 6pm</span>
</div>
<hr>
</div>
</section>
<!-- 푸터 영역 -->
<footer>
<div>
<span>© Copyright 2025 By NODECREW | All Rights Reserved</span>
</div>
</footer>
</body>
</html>