Skip to content
Merged
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
Empty file added faq/index.html
Empty file.
Binary file added images/bottom_banner.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/favi.ico
Binary file not shown.
Binary file added images/hot_item.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/ic_facebook.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/ic_instagram.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/ic_twitter.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/ic_youtube.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/logo.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/register.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/search.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/top_main.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
113 changes: 113 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
<!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="icon" href="./images/favi.ico">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css" />
</head>

<body>
<div class="page-wrapper">
<header>
<nav class="nav__container">
<a class="nav__logo" href="./">
<img src="./images/logo.png" alt="판다마켓로고">
</a>
<a class="nav__button" href="./login">로그인</a>
</nav>
</header>
<main>
<section class="main__hero">
<article class="hero__content container">
<div class="hero__text">
<h2>일상의 모든 물건을<br> 거래해 보세요</h2>
<a href="./items">
<button type="button">
<span>
구경하러 가기
</span>
</button>
</a>
</div>
<img class="hero__img" src="./images/top_main.png" alt="판다마켓메인이미지">
</article>
</section>
<section class="main__hot-item">
<article class="hot-item__content container">
<img src="./images/hot_item.png" alt="핫아이템">
<div class="hot-item__text">
<span>Hot item</span>
<h2>
인기 상품을<br>
확인해 보세요
</h2>
<p>
가장 HOT한 중고거래 물품을 판다 마켓에서 확인해 보세요
</p>
</div>
</article>
</section>
<section class="main__search">
<article class="search__content container">
<div class="search__text">
<span>Search</span>
<h2>
구매를 원하는<br>
상품을 검색하세요
</h2>
<p>
구매하고 싶은 물품은 검색해서 쉽게 찾아보세요
</p>
</div>
<img src="./images/search.png" alt="상품검색">
</article>
</section>
<section class="main__register">
<article class="register__content container">
<img src="./images/register.png" alt="판매등록">
<div class="register__text">
<span>Register</span>
<h2>
판매를 원하는<br>
상품을 등록하세요
</h2>
<p>
어떤 물건이든 판매하고 싶은 상품을 쉽게 등록하세요
</p>
</div>
</article>
</section>
<section class="main__banner">
<div class="container">
<div class="banner__text">
믿을 수 있는<br>
판다마켓 중고 거래
</div>
<img src="./images/bottom_banner.png" alt="판다마켓광고">
</div>
</section>
</main>
<footer>
<div class="footer__container container">
<span>©codeit - 2024</span>
<div>
<a href="./privacy">Privacy Policy</a>
<a href="./faq">FAQ</a>
</div>
<ul class="footer__sns-list">
<li><a target="_blank" href="https://www.facebook.com/?locale=ko_KR"><img src="./images/ic_facebook.png" alt="페이스북" /></a></li>
<li><a target="_blank" href="https://x.com/i/flow/login?input_flow_data=%7B%22requested_variant%22%3A%22eyJsYW5nIjoia28ifQ%3D%3D%22%7D"><img src="./images/ic_twitter.png" alt="트위터" /></a></li>
<li><a target="_blank" href="https://www.youtube.com/?hl=ko&gl=KR&app=desktop"><img src="./images/ic_youtube.png" alt="유튜브" /></a></li>
<li><a target="_blank" href="https://www.instagram.com/"><img src="./images/ic_instagram.png" alt="인스타그램" /></a></li>
</ul>
</div>
</footer>
</div>
</body>

</html>
Empty file added items/index.html
Empty file.
Empty file added login/index.html
Empty file.
Empty file added privacy/index.html
Empty file.
20 changes: 20 additions & 0 deletions reset.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
@charset "UTF-8";

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

7번째 라인 및에 공백 한칸 넣어주세요! 포맷팅 신경써보면 좋겠네요 :)


li {
list-style: none;
}

img {
vertical-align: top;
}

a{
text-decoration: none;
color:black
}
Loading
Loading