-
Notifications
You must be signed in to change notification settings - Fork 39
[임재은] Sprint1 #16
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
Merged
addiescode-sj
merged 6 commits into
codeit-bootcamp-frontend:Basic-임재은
from
Lim-JaeEun:Basic-임재은-sprint1
Apr 8, 2025
The head ref may contain hidden characters: "Basic-\uC784\uC7AC\uC740-sprint1"
Merged
[임재은] Sprint1 #16
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
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
Binary file not shown.
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.
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 hidden or 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,186 @@ | ||
| <!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" | ||
| as="style" | ||
| crossorigin="" | ||
| href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/static/pretendard.min.css" | ||
| /> | ||
| <link rel="stylesheet" href="reset.css" /> | ||
| <link rel="stylesheet" href="style.css" /> | ||
| </head> | ||
| <body class="container"> | ||
| <header> | ||
| <h1 class="logo"> | ||
| <a href="./" | ||
| ><img src="./images/logo.png" alt="판다마켓" aria-hidden="true" /> | ||
| <span class="sr-only">판다마켓</span> | ||
| </a> | ||
| </h1> | ||
| <nav class="nav"> | ||
| <p class="login-btn"><a href="./page/login.html">로그인</a></p> | ||
| </nav> | ||
| </header> | ||
| <main> | ||
| <section class="kv-section"> | ||
| <div class="kv-inner"> | ||
| <img | ||
| class="key-visual" | ||
| src="./images/kv.png?width=746" | ||
| srcset=" | ||
| ./images/kv.png?width=800 800w, | ||
| ./images/kv.png?width=746 746w, | ||
| ./images/kv.png?width=500 500w, | ||
| ./images/kv.png?width=200 200w | ||
| " | ||
| sizes=" | ||
| (min-width: 1200px) 746px, | ||
| (min-width: 900px) 600px, | ||
| (min-width: 767px) 100vw | ||
|
|
||
| " | ||
| alt="판다마켓 메인 판다 캐릭터 이미지" | ||
| /> | ||
|
|
||
| <div class="kv-info"> | ||
| <h2 class="title">일상의 모든 물건을 거래해 보세요</h2> | ||
| <button class="btn"> | ||
| <a href="./page/items.html">구경하러 가기</a> | ||
| </button> | ||
| </div> | ||
| </div> | ||
| </section> | ||
| <section class="banner-section"> | ||
| <div class="banner-inner"> | ||
| <div class="card hot-item"> | ||
| <div class="img-wrap"> | ||
| <img src="./images/bannerImg01.png" alt="인기 상품 소개 배너" /> | ||
| </div> | ||
| <div class="card-info"> | ||
| <div class="badge">Hot Item</div> | ||
| <h2 class="title">인기 상품을 확인해 보세요</h2> | ||
| <p class="desc"> | ||
| 가장 HOT한 중고거래 물품을<br /> | ||
| 판다 마켓에서 확인해 보세요 | ||
| </p> | ||
| </div> | ||
| </div> | ||
| <div class="card search-item"> | ||
| <div class="img-wrap"> | ||
| <img | ||
| src="./images/bannerImg02.png" | ||
| alt="상품검색 안내를 위한 이미지" | ||
| /> | ||
| </div> | ||
|
|
||
| <div class="card-info"> | ||
| <div class="badge">Search</div> | ||
| <h2 class="title">구매를 원하는 상품을 검색하세요</h2> | ||
| <p class="desc">구매하고 싶은 물품은 검색해서 쉽게 찾아보세요</p> | ||
| </div> | ||
| </div> | ||
| <div class="card sell-item"> | ||
| <div class="img-wrap"> | ||
| <img | ||
| src="./images/bannerImg03.png" | ||
| alt="상품 판매등록에 대한 이미지" | ||
| /> | ||
| </div> | ||
|
|
||
| <div class="card-info"> | ||
| <div class="badge">Register</div> | ||
| <h2 class="title"> | ||
| 판매를 원하는<br /> | ||
| 상품을 등록하세요 | ||
| </h2> | ||
| <p class="desc"> | ||
| 어떤 물건이든 판매하고 싶은 상품을<br /> | ||
| 쉽게 등록하세요 | ||
| </p> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </section> | ||
| <section class="pandaMarketBannerSection"> | ||
| <img | ||
| class="panda-image" | ||
| src="./images/bottomBanner.png?width=746" | ||
| srcset=" | ||
| ./images/bottomBanner.png?width=800 800w, | ||
| ./images/bottomBanner.png?width=746 746w, | ||
| ./images/bottomBanner.png?width=500 500w, | ||
| ./images/bottomBanner.png?width=200 200w | ||
| " | ||
| sizes=" | ||
| (min-width: 1200px) 746px, | ||
| (min-width: 767px) 100vw | ||
| " | ||
| alt="판다마켓 메인 판다 캐릭터 이미지" | ||
| /> | ||
| <div class="title"> | ||
| 믿을 수 있는<br /> | ||
| 판다마켓 중고 거래 | ||
| </div> | ||
| </section> | ||
| </main> | ||
| <footer class="footer"> | ||
| <ul class="footer_inner"> | ||
| <li class="footer-item copyright">©codeit - 2024</li> | ||
| <li class="footer-item support-content"> | ||
| <a href="./page/privacy.html">Privacy Policy</a> | ||
| <a href="./page/faq.html">FAQ</a> | ||
| </li> | ||
| <li class="footer-item icons-wrap"> | ||
| <span class="icon" | ||
| ><a | ||
| href="https://www.facebook.com/?locale=ko_KR" | ||
| target="_blank" | ||
| aria-label="Facebook 페이지로 이동" | ||
| rel="noopener noreferrer" | ||
| ><img | ||
| src="./images/facebook.png" | ||
| alt="facebook" | ||
| aria-hidden="true" /></a | ||
| ></span> | ||
| <span class="icon" | ||
| ><a | ||
| href="https://x.com/?lang=ko" | ||
| target="_blank" | ||
| aria-label="Twitter 페이지로 이동" | ||
| rel="noopener noreferrer" | ||
| ><img | ||
| src="./images/twitter.png" | ||
| alt="twitter" | ||
| aria-hidden="true" /></a | ||
| ></span> | ||
| <span class="icon" | ||
| ><a | ||
| rel="noopener noreferrer" | ||
| href="https://www.youtube.com/?hl=ko&gl=KR&app=desktop" | ||
| target="_blank" | ||
| aria-label="youtube 페이지로 이동" | ||
| ><img | ||
| src="./images/youtube.png" | ||
| alt="youtube" | ||
| aria-hidden="true" /></a | ||
| ></span> | ||
| <span class="icon" | ||
| ><a | ||
| href="https://www.instagram.com/" | ||
| target="_blank" | ||
| aria-label="Instagram 페이지로 이동" | ||
| rel="noopener noreferrer" | ||
| ><img | ||
| src="./images/instagram.png" | ||
| alt="instagram" | ||
| aria-hidden="true" /></a | ||
| ></span> | ||
| </li> | ||
| </ul> | ||
| </footer> | ||
| </body> | ||
| </html> | ||
This file contains hidden or 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="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>Document</title> | ||
| </head> | ||
| <body> | ||
| faq | ||
| </body> | ||
| </html> |
This file contains hidden or 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="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>Document</title> | ||
| </head> | ||
| <body> | ||
| </body> | ||
| </html> |
This file contains hidden or 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="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>items</title> | ||
| </head> | ||
| <body> | ||
| items | ||
| </body> | ||
| </html> |
This file contains hidden or 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="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>Document</title> | ||
| </head> | ||
| <body> | ||
| login | ||
| </body> | ||
| </html> |
This file contains hidden or 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="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>Document</title> | ||
| </head> | ||
| <body> | ||
| privacy | ||
| </body> | ||
| </html> |
This file contains hidden or 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="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>Document</title> | ||
| </head> | ||
| <body> | ||
| </body> | ||
| </html> |
This file contains hidden or 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="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>Document</title> | ||
| </head> | ||
| <body> | ||
| youtube | ||
| </body> | ||
| </html> |
This file contains hidden or 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,72 @@ | ||
| /* reset.css */ | ||
|
|
||
| /* 박스 사이징 설정 */ | ||
| *, | ||
| *::before, | ||
| *::after { | ||
| box-sizing: border-box; | ||
| margin: 0; | ||
| padding: 0; | ||
| } | ||
|
|
||
| /* 기본 글꼴 상속 */ | ||
| html { | ||
| font-family: sans-serif; | ||
| line-height: 1.15; | ||
| -webkit-text-size-adjust: 100%; | ||
| font-size: 16px; | ||
| } | ||
|
|
||
| /* 블록 요소 기본값 초기화 */ | ||
| body { | ||
| margin: 0; | ||
| } | ||
|
|
||
| /* 리스트 스타일 제거 */ | ||
| ul, | ||
| ol { | ||
| list-style: none; | ||
| } | ||
|
|
||
| /* 링크 스타일 초기화 */ | ||
| a { | ||
| text-decoration: none; | ||
| color: inherit; | ||
| } | ||
|
|
||
| /* 버튼 초기화 */ | ||
| button, | ||
| input, | ||
| textarea, | ||
| select { | ||
| font: inherit; | ||
| border: none; | ||
| background: none; | ||
| outline: none; | ||
| cursor: pointer; | ||
| } | ||
|
|
||
| /* 이미지 초기화 */ | ||
| img { | ||
| max-width: 100%; | ||
| height: auto; | ||
| display: block; | ||
| } | ||
|
|
||
| /* 테이블 스타일 초기화 */ | ||
| table { | ||
| border-collapse: collapse; | ||
| border-spacing: 0; | ||
| } | ||
|
|
||
| /* 기본 헤딩 및 텍스트 스타일 초기화 */ | ||
| h1, | ||
| h2, | ||
| h3, | ||
| h4, | ||
| h5, | ||
| h6, | ||
| p { | ||
| margin: 0; | ||
| font-weight: normal; | ||
| } |
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.
외부 링크의 경우, 보안을 위해 rel="noopener noreferrer"를 추가해주세요! :)
noopener: 새 탭에서 열린 페이지가 원본 페이지에 접근하는 것을 방지
noreferrer: 리퍼러 정보가 새 페이지로 전달되는 것을 방지