-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
318 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!DOCTYPE html> | ||
<html lang="ko"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>FAQ</title> | ||
</head> | ||
<body> | ||
|
||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
<!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="icon" href="images/logo/favicon.ico"> | ||
<link rel="stylesheet" as="style" crossorigin href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css" /> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
<body> | ||
<header> | ||
<a href="/"> | ||
<img src="images/logo/logo-panda-market.png" | ||
alt="판다마켓 홈" | ||
width="153"> | ||
</a> | ||
<a href="login.html" class="button login-link-button">로그인</a> | ||
</header> | ||
<main> | ||
<section id="hero" class="banner"> | ||
<div class="container"> | ||
<h1> | ||
일상의 모든 물건을<br> | ||
거래해 보세요 | ||
</h1> | ||
<a href="items.html" class="button pill-button">구경하러 가기</a> | ||
</div> | ||
</section> | ||
<section class="features" class="container"> | ||
<div class="feature"> | ||
<img src="images/home/img-feature-1.png" alt="인기 상품" width="50%"> | ||
<div class="feature-content"> | ||
<h2 class="feature-tag">Hot item</h2> | ||
<h1> | ||
인기 상품을<br> | ||
확인해 보세요 | ||
</h1> | ||
<p class="feature-description"> | ||
가장 HOT한 중고거래 물품을<br> | ||
판다 마켓에서 확인해 보세요 | ||
</p> | ||
</div> | ||
</div> | ||
<div class="feature"> | ||
<div class="feature-content"> | ||
<h2 class="feature-tag">Search</h2> | ||
<h1> | ||
구매를 원하는<br> | ||
상품을 검색하세요 | ||
</h1> | ||
<p class="feature-description"> | ||
구매하고 싶은 물품은 검색해서<br> | ||
쉽게 찾아보세요 | ||
</p> | ||
</div> | ||
<img src="images/home/img-feature-2.png" alt="상품 검색 기능" width="50%"> | ||
</div> | ||
<div class="feature"> | ||
<img src="images/home/img-feature-3.png" alt="판매 상품 등록" width="50%"> | ||
<div class="feature-content"> | ||
<h2 class="feature-tag">Register</h2> | ||
<h1> | ||
판매를 원하는<br> | ||
상품을 등록하세요 | ||
</h1> | ||
<p class="feature-description"> | ||
어떤 물건이든 판매하고 싶은 상품을<br> | ||
쉽게 등록하세요 | ||
</p> | ||
</div> | ||
</div> | ||
</section> | ||
<section id="bottom" class="banner"> | ||
<div class="container"> | ||
<h1> | ||
믿을 수 있는<br> | ||
판다마켓 중고 거래 | ||
</h1> | ||
</div> | ||
</section> | ||
</main> | ||
<footer> | ||
<div>©codeit - 2024</div> | ||
<div class="footerMenu"> | ||
<a href="privacy.html">Privacy Policy</a> | ||
<a href="faq.html">FAQ</a> | ||
</div> | ||
<div class="socialMedia"> | ||
<a href="https://www.facebook.com/" target="_blank"> | ||
<img src="images/social/ic-facebook.svg" alt="페이스북" width="20"> | ||
</a> | ||
<a href="https://twitter.com/" target="_blank"> | ||
<img src="images/social/ic-twitter.svg" alt="트위터" width="20"> | ||
</a> | ||
<a href="https://www.youtube.com/" target="_blank"> | ||
<img src="images/social/ic-youtube.svg" alt="유튜브" width="20"> | ||
</a> | ||
<a href="https://www.instagram.com/" target="_blank"> | ||
<img src="images/social/ic-instagram.svg" alt="인스타그램" width="20"> | ||
</a> | ||
</div> | ||
</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!DOCTYPE html> | ||
<html lang="ko"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Items</title> | ||
</head> | ||
<body> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!DOCTYPE html> | ||
<html lang="ko"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Login</title> | ||
</head> | ||
<body> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!DOCTYPE html> | ||
<html lang="ko"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Privacy</title> | ||
</head> | ||
<body> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,150 @@ | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
body { | ||
font-family: "Pretendard", sans-serif; | ||
margin: 0; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
color: inherit; | ||
} | ||
|
||
header { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
padding : 9.5px 250px; | ||
background-color: ffffff; | ||
border-bottom: 1px solid #dfdfdf; | ||
} | ||
|
||
.button { | ||
background-color: #3692ff; | ||
color: #f3f4f6; | ||
text-align: center; | ||
display: inline-flex; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
|
||
.login-link-button { | ||
padding: 12px 43px; | ||
border-radius: 8px; | ||
font-size: 16px; | ||
font-weight: 600; | ||
line-height: 26px; | ||
} | ||
|
||
.pill-button { | ||
padding: 16px 124px; | ||
border-radius: 9999px; | ||
font-size: 20px; | ||
font-weight: 600; | ||
line-height: 32px; | ||
margin-top: 32px; | ||
} | ||
|
||
.banner { | ||
background-color: #cfe5ff; | ||
height: 540px; | ||
display: flex; | ||
align-items: center; | ||
background-size: 50%; | ||
background-repeat: no-repeat; | ||
background-position: 70% bottom; | ||
} | ||
|
||
#hero.banner { | ||
background-image: url("images/home/img-home-hero.png"); | ||
} | ||
|
||
#bottom.banner { | ||
background-image: url("images/home/img-home-bottom.png"); | ||
} | ||
|
||
.container { | ||
max-width: 1200px; | ||
margin: 0 auto; | ||
width: 100% | ||
} | ||
|
||
h1 { | ||
font-size: 40px; | ||
font-weight: 700; | ||
line-height: 56px; | ||
color: #374151; | ||
} | ||
|
||
.features { | ||
display: flex; | ||
flex-direction: column; | ||
max-width: 1200px; | ||
margin: 0 auto; | ||
padding-bottom: 138px; | ||
width: 100%; | ||
} | ||
|
||
.feature { | ||
padding: 138px 0; | ||
display: flex; | ||
align-items: center; | ||
gap: 5% | ||
} | ||
|
||
.feature-content { | ||
flex: 1; | ||
} | ||
|
||
.feature:nth-child(2) { | ||
text-align: right; | ||
} | ||
|
||
.feature-tag { | ||
font-size: 18px; | ||
font-weight: 700; | ||
line-height: 26px; | ||
color: #3692ff; | ||
margin-bottom: 12px; | ||
} | ||
|
||
.feature-description { | ||
font-size: 24px; | ||
font-weight: 500; | ||
line-height: 32px; | ||
color: #374151; | ||
margin-top: 24px; | ||
} | ||
|
||
footer { | ||
background-color: #111827; | ||
color: #9ca3af; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
padding: 32px 200px 108px; | ||
font-size: 16px; | ||
} | ||
|
||
.footerMenu { | ||
display: flex; | ||
gap: 30px; | ||
color: #e5e7eb; | ||
} | ||
|
||
.socialMedia { | ||
display: flex; | ||
gap: 12px; | ||
} | ||
|
||
.button:hover { | ||
background-color: #1967d6; | ||
} | ||
|
||
.button:focus { | ||
background-color: #1251aa; | ||
} |