-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[소중모] sprint4 #182
Merged
withyj-codeit
merged 1 commit into
codeit-bootcamp-frontend:Basic-소중모
from
sjm6030:part1-소중모
Nov 19, 2024
The head ref may contain hidden characters: "part1-\uC18C\uC911\uBAA8"
Merged
[소중모] sprint4 #182
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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.
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.
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,143 @@ | ||
<!DOCTYPE html> | ||
<html lang="ko"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
|
||
<meta property="og:type" content="website" /> | ||
<meta property="og:url" content="https://panda-market-sample.netlify.app" /> | ||
<meta property="og:title" content="판다마켓" /> | ||
<meta property="og:image" content="images/logo/og-image.png" /> | ||
<meta | ||
property="og:description" | ||
content="일상의 모든 물건을 거래해 보세요" | ||
/> | ||
|
||
<title>판다마켓</title> | ||
<link rel="icon" href="images/logo/favicon.ico" /> | ||
<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="styles/global.css" /> | ||
<link rel="stylesheet" href="styles/home.css" /> | ||
</head> | ||
|
||
<body> | ||
<header> | ||
<a href="index.html" aria-label="홈으로 이동" | ||
><img src="images/logo/logo.svg" alt="판다마켓 로고" width="153" | ||
/></a> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
가독성에 더 좋을 것 같아요. |
||
<a href="login.html" id="loginLink" class="button">로그인</a> | ||
</header> | ||
|
||
<main class="with-header"> | ||
<section id="hero" class="banner"> | ||
<div class="wrapper"> | ||
<h1> | ||
일상의 모든 물건을<br /> | ||
거래해 보세요 | ||
</h1> | ||
<a href="items.html" class="button pill-button">구경하러 가기</a> | ||
</div> | ||
</section> | ||
|
||
<section id="features" class="wrapper"> | ||
<div class="feature"> | ||
<img src="images/home/feature1-image.png" alt="인기 상품" /> | ||
<div class="feature-content"> | ||
<h2>Hot item</h2> | ||
<h1> | ||
인기 상품을 <span class="break-on-desktop"><br /></span>확인해 | ||
보세요 | ||
</h1> | ||
<p class="feature-description"> | ||
가장 HOT한 중고거래 물품을<br />판다마켓에서 확인해 보세요 | ||
</p> | ||
</div> | ||
</div> | ||
<div class="feature"> | ||
<img src="images/home/feature2-image.png" alt="검색 기능" /> | ||
<div class="feature-content"> | ||
<h2>Search</h2> | ||
<h1> | ||
구매를 원하는 <span class="break-on-desktop"><br /></span>상품을 | ||
검색하세요 | ||
</h1> | ||
<p class="feature-description"> | ||
구매하고 싶은 물품은 검색해서 | ||
<br />쉽게 찾아보세요 | ||
</p> | ||
</div> | ||
</div> | ||
<div class="feature"> | ||
<img src="images/home/feature3-image.png" alt="판매 상품 등록" /> | ||
<div class="feature-content"> | ||
<h2>Register</h2> | ||
<h1> | ||
판매를 원하는 <span class="break-on-desktop"><br /></span>상품을 | ||
등록하세요 | ||
</h1> | ||
<p class="feature-description"> | ||
어떤 물건이든 판매하고 싶은 상품을 | ||
<br />쉽게 등록하세요 | ||
</p> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<section id="bottomBanner" class="banner"> | ||
<div class="wrapper"> | ||
<h1> | ||
믿을 수 있는 | ||
<br /> | ||
판다마켓 중고거래 | ||
</h1> | ||
</div> | ||
</section> | ||
</main> | ||
|
||
<footer> | ||
<div id="copyright">©codeit - 2024</div> | ||
<div id="footerMenu"> | ||
<a href="privacy.html">Privacy Policy</a> | ||
<a href="faq.html">FAQ</a> | ||
</div> | ||
<div id="socialMedia"> | ||
<a | ||
href="https://www.facebook.com/" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
aria-label="판다마켓 페이스북" | ||
><img src="images/social/facebook-logo.svg" alt="페이스북" width="20" | ||
/></a> | ||
<a | ||
href="https://twitter.com/" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
aria-label="판다마켓 트위터" | ||
><img src="images/social/twitter-logo.svg" alt="트위터" width="20" | ||
/></a> | ||
<a | ||
href="https://www.youtube.com/" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
aria-label="판다마켓 유튜브" | ||
><img src="images/social/youtube-logo.svg" alt="유튜브" width="20" | ||
/></a> | ||
<a | ||
href="https://www.instagram.com/" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
aria-label="판다마켓 인스타그램" | ||
><img | ||
src="images/social/instagram-logo.svg" | ||
alt="인스타그램" | ||
width="20" | ||
/></a> | ||
</div> | ||
</footer> | ||
</body> | ||
</html> |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
메타 태그 설정 좋아요~👍