-
Notifications
You must be signed in to change notification settings - Fork 39
[김준우] sprint1 #31
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
GANGYIKIM
merged 1 commit into
codeit-bootcamp-frontend:Basic-김준우
from
wnsdn00:basic-김준우-sprint1
Feb 27, 2025
The head ref may contain hidden characters: "basic-\uAE40\uC900\uC6B0-sprint1"
Merged
[김준우] sprint1 #31
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
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 @@ | ||
| faq page |
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.
wnsdn00 marked this conversation as resolved.
Show resolved
Hide resolved
wnsdn00 marked this conversation as resolved.
Show resolved
Hide resolved
|
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,87 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="ko"> | ||
| <head> | ||
| <meta charset="UTF-8"> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
| <link rel="stylesheet" href="style.css"> | ||
| <title>판다마켓</title> | ||
| </head> | ||
| <body> | ||
| <!-- header section / 로고, 로그인 --> | ||
| <header> | ||
| <div class="banner"> | ||
| <div class="banner-main"> | ||
| <a class="header-logo" href="index.html"> | ||
| <img src="./images/header-logo.png" alt="로고"> | ||
wnsdn00 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| </a> | ||
| <a id="login" href="login.html">로그인</a> | ||
| </div> | ||
| </div> | ||
| </header> | ||
| <!-- main section --> | ||
| <main> | ||
wnsdn00 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| <!-- top section --> | ||
| <section> | ||
| <div class="top-section"> | ||
| <div class="top-content"> | ||
| <div class="top-text"> | ||
| <div class="top-title"> | ||
| <h2>일상의 모든 물건을<br> | ||
| 거래해 보세요 | ||
| </h2> | ||
wnsdn00 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| <a id="sightsee" href="sightsee.html">구경하러 가기</a> | ||
| </div> | ||
| </div> | ||
| <img src="./images/main-section.png" alt="이미지1"> | ||
| </div> | ||
| </div> | ||
| </section> | ||
| <!-- middle section --> | ||
| <div class="middle-section"> | ||
| <div class="hot-item"> | ||
| <img src="./images/hot-item.png" alt="이미지2"> | ||
wnsdn00 marked this conversation as resolved.
Show resolved
Hide resolved
wnsdn00 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| </div> | ||
| <div class="search"> | ||
| <img src="./images/search.png" alt="이미지3"> | ||
| </div> | ||
| <div class="register"> | ||
| <img src="./images/register.png" alt="이미지4"> | ||
| </div> | ||
| </div> | ||
| <!-- gray section --> | ||
| <div class="gray-section"></div> | ||
wnsdn00 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| <!-- bottom section --> | ||
| <section> | ||
| <div class="bottom-section"> | ||
| <div class="bottom-content"> | ||
| <div class="bottom-text"> | ||
| <div class="bottom-title"> | ||
| <h2>믿을 수 있는<br> | ||
| 판다마켓 중고 거래 | ||
| </h2> | ||
| </div> | ||
| </div> | ||
| <img src="./images/bottom-section.png" alt="이미지5"> | ||
| </div> | ||
| </div> | ||
| </section> | ||
| </main> | ||
| <!-- footer section --> | ||
| <footer> | ||
| <div class="footer-text"> | ||
| <div>@codeit - 2024</div> | ||
| <div class="footer-main"> | ||
| <a class="privacy" href="privacy.html">Privacy Policy</a> | ||
| <a class="faq" href="faq.html">FAQ</a> | ||
| </div> | ||
| <div class="sns"> | ||
| <a href="https://www.facebook.com" target="_blank"><img src="./images/ic_facebook.png" alt="페이스북"></a> | ||
| <a href="https://www.twitter.com" target="_blank"><img src="./images/ic_twitter.png" alt="트위터"></a> | ||
| <a href="https://www.youtube.com" target="_blank"><img src="./images/ic_youtube.png" alt="유튜브"></a> | ||
| <a href="https://www.instagram.com" target="_blank"><img src="./images/ic_instagram.png" alt="인스타그램"></a> | ||
| </div> | ||
wnsdn00 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| </div> | ||
| </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 @@ | ||
| 로그인 페이지 |
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 @@ | ||
| privacy page |
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 @@ | ||
| 구경하기 페이지 |
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,163 @@ | ||
| * { | ||
| margin: 0; | ||
| padding: 0; | ||
| box-sizing: border-box; | ||
| } | ||
|
|
||
| body { | ||
| font-family: Arial, Helvetica, sans-serif; | ||
| } | ||
wnsdn00 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| header { | ||
| width: 100%; | ||
| background-color: #FFFFFF; | ||
| } | ||
|
|
||
| .banner { | ||
| display: flex; | ||
| max-width: 1920px; | ||
| width: 100%; | ||
| height: 50px; | ||
| display: flex; | ||
| align-items: center; | ||
| justify-content: center; | ||
| padding: 0 200px; | ||
| } | ||
|
|
||
| .banner-main { | ||
| width: 100%; | ||
| display: flex; | ||
| align-items: center; | ||
| justify-content: space-between; | ||
| } | ||
|
|
||
| .header-logo img { | ||
| width: 100px; | ||
| height: 35px; | ||
| cursor: pointer; | ||
| } | ||
|
|
||
| #login { | ||
wnsdn00 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| padding: 10px; | ||
| width: 90px; | ||
| height: 35px; | ||
| font-size: 12px; | ||
| text-align: center; | ||
| text-decoration: none; | ||
| color: #ffffff; | ||
| background-color: #3692FF; | ||
| border: none; | ||
| border-radius: 5px; | ||
| cursor: pointer; | ||
| overflow: hidden; | ||
| } | ||
|
|
||
| .top-section, | ||
| .bottom-section { | ||
| position: relative; | ||
| width: 100%; | ||
| height: 350px; | ||
| background-color: #CFE5FF; | ||
| } | ||
|
|
||
| .top-content { | ||
| display: flex; | ||
| align-items: center; | ||
| justify-content: space-between; | ||
| width: 80%; | ||
| height: 100%; | ||
| overflow: hidden; | ||
| } | ||
|
|
||
| .top-text, | ||
| .bottom-text { | ||
| position: absolute; | ||
| left: 200px; | ||
| bottom: 70px; | ||
| } | ||
|
|
||
| .top-title h2, | ||
| .bottom-title h2 { | ||
| width: 200px; | ||
| height: 50px; | ||
| font-weight: bold; | ||
| margin-bottom: 32px; | ||
| color: #374151; | ||
| font-size: 22px; | ||
| } | ||
|
|
||
| #sightsee { | ||
| width: 250px; | ||
| height: 40px; | ||
| display: flex; | ||
| text-align: center; | ||
| justify-content: center; | ||
| padding: 10px; | ||
| font-size: 14px; | ||
| color: #FFFFFF; | ||
| background-color: #3692FF; | ||
| border-radius: 20px; | ||
| text-decoration: none; | ||
| } | ||
|
|
||
| .top-content img, | ||
| .bottom-content img { | ||
| position: absolute; | ||
| bottom: 0; | ||
| right: 200px; | ||
| width: 500px; | ||
| flex: 1; | ||
| } | ||
|
|
||
| .middle-section { | ||
| height: 1200px; | ||
| } | ||
|
|
||
| .gray-section { | ||
| height: 100px; | ||
| background-color: #f5f5f5; | ||
| } | ||
|
|
||
| .hot-item, | ||
| .search, | ||
| .register { | ||
| display: flex; | ||
| align-items: center; | ||
| justify-content: center; | ||
| height: 400px; | ||
| } | ||
|
|
||
| .hot-item img, | ||
| .search img, | ||
| .register img { | ||
| width: 600px; | ||
| height: 300px; | ||
| } | ||
|
|
||
| footer { | ||
| position: relative; | ||
| height: 100px; | ||
| color: #9CA3AF; | ||
| background-color: #111827; | ||
| } | ||
|
|
||
| .footer-text { | ||
| display: flex; | ||
| align-items: center; | ||
| justify-content: space-between; | ||
| padding: 16px 200px; | ||
| } | ||
|
|
||
| .privacy, | ||
| .faq { | ||
| color: #FFFFFF; | ||
| text-decoration: none; | ||
| } | ||
|
|
||
| .privacy { | ||
| margin: 0 10px; | ||
| } | ||
|
|
||
| .faq { | ||
| margin: 0 10px; | ||
| } | ||
wnsdn00 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
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.
Uh oh!
There was an error while loading. Please reload this page.