-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
141 lines (138 loc) · 4.74 KB
/
index.html
File metadata and controls
141 lines (138 loc) · 4.74 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" as="style" crossorigin href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css" />
<title>판다마켓</title>
</head>
<body>
<!-- 로그인 상단 -->
<div id="header_top">
<div id="header_top_img">
<a href="#">
<img id="panda_img" src="img/img_panda.png" alt="">
</a>
</div>
<div id="header_top_btn">
<button onclick="location.href='login.html'">로그인</button>
</div>
</div>
<!-- 상단 이미지 -->
<div id="header_bottom">
<div id="header_bottom_max">
<div id="header_bottom_view">
<div id="header_bottom_view_text">
<p id="header_bottom_p">
일상의 모든 물건을<br>
거래해 보세요
</p>
</div>
<div id="header_bottom_btn">
<button onclick="location.href='items.html'">구경하러 가기</button>
</div>
</div>
<img id="header_bottom_view_img" src="img/Img_home_top.png" alt="">
</div>
</div>
<!-- 중간 머시기 -->
<div id="middle_part">
<!-- 1번째 섹션 -->
<section class="middle_part_section">
<img id="section_1_img" src="img/Img_home_01.png" alt="">
<div id="section_1_text">
<p>
Hot item
</p>
<p>
인기 상품을<br>
확인해 보세요
</p>
<p>
가장 HOT한 중고거래 물품을<br>
판다 마켓에서 확인해 보세요
</p>
</div>
</section>
<!-- 2번째 섹션 -->
<section class="middle_part_section">
<img id="section_2_img" src="img/Img_home_02.png" alt="">
<div id="section_2_text">
<p>
Search
</p>
<p>
구매를 원하는<br>
상품을 검색하세요
</p>
<p>
구매하고 싶은 물품은 검색해서<br>
쉽게 찾아보세요
</p>
</div>
</section>
<!-- 3번째 섹션 -->
<section class="middle_part_section">
<img id="section_3_img" src="img/Img_home_03.png" alt="">
<div id="section_3_text">
<p>
Register
</p>
<p>
판매를 원하는<br>
상품을 등록하세요
</p>
<p>
어떤 물건이든 판매하고 싶은 상품을<br>
쉽게 등록하세요
</p>
</div>
</section>
</div>
<!-- 푸터 -->
<footer>
<div id="footer_top">
<div id="footer_top_max">
<div id="footer_top_text">
<p>
믿을 수 있는<br>
판다마켓 중고거래
</p>
</div>
<img id="footer_top_img" src="img/Img_home_bottom.png" alt="">
</div>
</div>
<div id="footer_bottom">
<div id="footer_bottom_contents">
<div id="footer_copyright">
<p>©codeit - 2024</p>
</div>
<div id="footer_faq">
<a href="privacy.html">
<p>Privacy Policy</p>
</a>
<a href="faq.html">
<p>FAQ</p>
</a>
</div>
<div id="footer_ad">
<a href="https://www.facebook.com/">
<address id="facebook"></address>
</a>
<a href="https://x.com/">
<address id="twitter"></address>
</a>
<a href="https://www.youtube.com/">
<address id="yotube"></address>
</a>
<a href="https://www.instagram.com/">
<address id="instagram"></address>
</a>
</div>
</div>
</div>
</footer>
</body>
</html>