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
Binary file added img/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 img/function1.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 img/function2.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 img/function3.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 img/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 img/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 img/panda1.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 img/panda2.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 img/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 img/youtube.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
126 changes: 126 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
<!DOCTYPE html>
<html lang="ko">
Copy link
Collaborator

Choose a reason for hiding this comment

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

lang을 잘 챙겨주셨네요! 👍

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" as="style" crossorigin href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/static/pretendard.min.css" />
<link rel="stylesheet" href="style.css">
<title>판다마켓</title>
</head>
<body>
<div class="container">
<header>
<a href="/">
<img src="/img/logo.png" alt="logo" class="logo">
Copy link
Collaborator

Choose a reason for hiding this comment

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

alt를 잘 넣어주셨네요~! 👍

</a>
<a class="login-button" href="/login">로그인</a>
</header>
</div>
<div class="sky-bg">
<section class="container ad-section">
<div class="contents">
<div class="ad-text">
<div class="title">
일상의 모든 물건을<br>거래해 보세요
</div>
<a class="button" href="/items">
구경하러 가기
</a>
</div>
<img src="/img/panda1.png" alt="물건 거래" class="panda">
</div>
</section>
</div>
<div class="container">
<section class="function-section">
<div class="function-block">
<img src="/img/function1.png" alt="인기상품 확인">
<div class="text left">
<div class="tag">
Hot item
</div>
<div class="function-text">
<div class="title">
인기 상품을<br>확인해 보세요
</div>
<div class="description">
가장 HOT한 중고거래 물품을<br>판다 마켓에서 확인해 보세요
</div>
</div>
</div>
</div>
</section>
<section class="function-section">
<div class="function-block">
<div class="text right">
<div class="tag">
Search
</div>
<div class="function-text">
<div class="title">
구매를 원하는<br>상품을 검색하세요
</div>
<div class="description">
구매하고 싶은 물품은 검색해서<br>쉽게 찾아보세요
</div>
</div>
</div>
<img src="/img/function2.png" alt="원하는 상품 검색">
</div>
</section>
<section class="function-section">
<div class="function-block">
<img src="/img/function3.png" alt="상품 등록">
<div class="text left">
<div class="tag">
Register
</div>
<div class="function-text">
<div class="title">
판매를 원하는<br>상품을 등록하세요
</div>
<div class="description">
어떤 물건이든 판매하고 싶은 상품을<br>쉽게 등록하세요
</div>
</div>
</div>
</div>
</section>
</div>
<section class="sky-bg">
<section class="container ad-section">
<div class="contents">
<div class="title">
믿을 수 있는<br>판다마켓 중고 거래
</div>
<img src="/img/panda2.png" alt="판다마켓 중고거래" class="panda">
</section>
</section>
</div>
<footer>
<div class="container footer-contents">
<div class="footer-codeit">
©codeit - 2024
</div>
<div class="footer-link">
<a href="/privacy">Privacy Policy</a>
<a href="/faq">FAQ</a>
</div>
<div class="sns">
<a href="https://www.facebook.com" target="_blank">
<img src="/img/facebook.png" alt="페이스북 로고">
</a>
<a href="https://x.com" target="_blank">
<img src="/img/twitter.png" alt="트위터 로고">
</a>
<a href="https://www.youtube.com" target="_blank">
<img src="/img/youtube.png" alt="유튜브 로고">
</a>
<a href="https://www.instagram.com" target="_blank">
<img src="/img/instagram.png" alt="인스타그램 로고">
</a>
</div>
</div>
</footer>
</body>
</html>
Loading
Loading