Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added images/Img_home_01.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/Img_home_02.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/Img_home_03.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/Img_home_bottom.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/Img_home_top.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/Property 1=sm.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/Property [email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/Property [email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/panda_face.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/size=desktop, sort=Default.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/standard=pc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/state=active.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/type=solid, status=default.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
96 changes: 96 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>판다마켓</title>
<link rel="stylesheet" href="style.css">
</head>

<body>
<header class="header">
<div>
<a href="index.html">
<img src="images/Property 1=sm.png">
</a>
</div>
<a href="login.html" class="login_button">로그인</a>
</header>

<div class="main_banner">
<div class="banner_content">
<h1>
일상의 모든 물건을<br>
거래해 보세요
</h1>
<a href="items.html" class="browse_button">구경하러 가기</a>
</div>
<img src="images/Img_home_top.png">
</div>

<section class="section">
<div class="section_inner">
<img src="images/Img_home_01.png">
<div class="section_text">
<h5 class="label">Hot item</h5>
<h2>
인기 상품을<br>
확인해보세요
</h2>
<h3>
가장 HOT한 중고거래 물품을<br>
판다 마켓에서 확인해보세요
</h3>
</div>
</div>
</section>

<section class="section">
<div class="section_inner">
<div class="section_text">
<h5 class="label">Search</h5>
<h2>
구매를 원하는<br>
상품을 검색하세요
</h2>
<h3>
구매하고 싶은 물품은 검색해서<br>
쉽게 찾아보세요
</h3>
</div>
<img src="images/Img_home_02.png">
</div>
</section>

<section class="section">
<div class="section_inner">
<img src="images/Img_home_03.png">
<div class="section_text">
<h5 class="label">Register</h5>
<h2>
판매를 원하는<br>
상품을 등록하세요
</h2>
<h3>
어떤 물건이든 판매하고 싶은 상품을<br>
쉽게 등록하세요
</h3>
</div>
</div>
</section>

<section class="bottom_banner">
<div class="bottom_content">
<h1>
믿을 수 있는<br>
판다마켓 중고거래
</h1>
<img src="images/Img_home_bottom.png">
</div>
</section>

<footer>
<img src="images/standard=pc.png"> <!--푸터 수정하기-->
</footer>
</body>
</html>
88 changes: 88 additions & 0 deletions login.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Pretendard', sans-serif;
}

a {
text-decoration: underline;
}

body {
width: 100%;
overflow-x: hidden;
background-color: #fcfcfc;
}

form {
margin: 100px auto;
width: 640px;
height: 520px;
background-color: #fcfcfc;
}

#title {
color: #3692ff;
font-size: 66.34px;
font-weight: 700;
font-family: 'ROKAF Sans';
margin: auto 20px ;
}

#title_box {
display: flex;
justify-content: center;
align-items: center;
}

label {
color: #1f2937;
display: block;
font-size: 18px;
font-weight: 700;
margin: 16px 0 8px;
}

input {
border: #f3f4f6;
color: #0f0f0f;
display: block;
font-size: 16px;
line-height: 24px;
margin: 10px 0;
padding: 16px 24px;
width: 100%;
height: 56px;
background-color: #f3f4f6;
border-radius: 10px;
}

input::placeholder {
color: #1f2937;
font-size: 16px;
font-weight: 400;
}

button {
cursor: pointer;
display: block;
justify-content: center;
align-items: center;
background-color: #3692ff;
color: #FFFFFF;
border: none;
padding: 16px 124px;
border-radius: 999px;
font-size: 20px;
font-weight: 600;
width: 100%;
height: 56px;
}

.register {
font-size: 14px;
font-weight: 500;
text-align: center;
padding: 16px;
}
39 changes: 39 additions & 0 deletions login.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>판다마켓/로그인</title>
<link rel="stylesheet" href="login.css">
</head>
<body>
<div>
<form>
<div id="title_box">
<div>
<a href="index.html">
<img src="images/panda_face.png">
</a>
</div>
<div id="title">
판다마켓
</div>
</div>
<div>
<label for="signup_email">이메일</label>
<input id="signup_email" name="email" type="email" placeholder="[email protected]">
</div>
<div>
<label for="signup_password">비밀번호</label>
<input id="signup_password" name="password" type="password" placeholder="••••••••">
</div>
<div>
<button>로그인</button>
</div>
<div class="register">
<span>판다마켓이 처음이신가요? </span><a href="register.html">회원가입</a>
</div>
</form>
</div>
</body>
</html>
88 changes: 88 additions & 0 deletions register.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Pretendard', sans-serif;
}

a {
text-decoration: underline;
}

body {
width: 100%;
overflow-x: hidden;
background-color: #fcfcfc;
}

form {
margin: 100px auto;
width: 640px;
height: 520px;
background-color: #fcfcfc;
}

#title {
color: #3692ff;
font-size: 66.34px;
font-weight: 700;
font-family: 'ROKAF Sans';
margin: auto 20px ;
}

#title_box {
display: flex;
justify-content: center;
align-items: center;
}

label {
color: #1f2937;
display: block;
font-size: 18px;
font-weight: 700;
margin: 16px 0 8px;
}

input {
border: #f3f4f6;
color: #0f0f0f;
display: block;
font-size: 16px;
line-height: 24px;
margin: 10px 0;
padding: 16px 24px;
width: 100%;
height: 56px;
background-color: #f3f4f6;
border-radius: 10px;
}

input::placeholder {
color: #1f2937;
font-size: 16px;
font-weight: 400;
}

button {
cursor: pointer;
display: block;
justify-content: center;
align-items: center;
background-color: #3692ff;
color: #FFFFFF;
border: none;
padding: 16px 124px;
border-radius: 999px;
font-size: 20px;
font-weight: 600;
width: 100%;
height: 56px;
}

.login {
font-size: 14px;
font-weight: 500;
text-align: center;
padding: 16px;
}
47 changes: 47 additions & 0 deletions register.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>판다마켓/회원가입</title>
<link rel="stylesheet" href="register.css">
</head>
<body>
<div>
<form>
<div id="title_box">
<div>
<a href="index.html">
<img src="images/panda_face.png">
</a>
</div>
<div id="title">
판다마켓
</div>
</div>
<div>
<label for="signup_email">이메일</label>
<input id="signup_email" name="email" type="email" placeholder="[email protected]">
</div>
<div>
<label for="nickname">닉네임</label>
<input id="nickname" name="nickname" placeholder="판다">
</div>
<div>
<label for="signup_password">비밀번호</label>
<input id="signup_password" name="password" type="password" placeholder="••••••••">
</div>
<div>
<label for="signup_password_repeat">비밀번호 확인</label>
<input id="signup_password_repeat" name="password_repeat" type="password" placeholder="asdffff">
</div>
<div>
<button>로그인</button>
</div>
<div class="login">
<span>이미 회원이신가요? </span><a href="login.html">로그인</a>
</div>
</form>
</div>
</body>
</html>
Loading