-
Notifications
You must be signed in to change notification settings - Fork 39
[김정우] Sprint2 #98
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
The head ref may contain hidden characters: "Basic-\uAE40\uC815\uC6B0-sprint1"
[김정우] Sprint2 #98
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
|
Collaborator
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. 💊 제안 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,137 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="ko"> | ||
| <head> | ||
| <meta charset="utf-8"> | ||
| <title>판다마켓</title> | ||
| <link rel="stylesheet" as="style" crossorigin href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/static/pretendard.css"> | ||
| <link rel="stylesheet" href="style.css"> | ||
| </head> | ||
| <body> | ||
| <header> | ||
| <div class="container"> | ||
| <div class="header-container"> | ||
| <a class="login-link" href="/"> | ||
| <img class="title-logo" src="img/logo.png"> | ||
| </a> | ||
| <button class="login"> | ||
| <a class="login-link" href="login.html">로그인</a> | ||
| </button> | ||
| </div> | ||
| </div> | ||
| </header> | ||
| <section class="blue-section"> | ||
| <div class="container"> | ||
| <div class="hero-section"> | ||
| <div class="hero-content"> | ||
| <h2 class="title"> | ||
| 일상의 모든 물건을<br> | ||
| 거래해 보세요 | ||
| </h2> | ||
| <button class="button-buy"> | ||
| <a class="login-link" href="/items">구경하러 가기</a> | ||
| </button> | ||
| </div> | ||
| <img class="panda-pic" src="img/panda1.png" alt="fashionist_panda"> | ||
| </div> | ||
| </div> | ||
| </section> | ||
| <section class="white-section"> | ||
| <div class="container"> | ||
| <div class="feature-section"> | ||
| <img class="feature-image" src="img/hukuHeart.png" alt="panda_look_clothes"> | ||
| <div class="contents"> | ||
| <span class="section-heading"> | ||
| Hot item | ||
| </span> | ||
| <h2 class="title"> | ||
| 인기 상품을<br> | ||
| 확인해 보세요 | ||
| </h2> | ||
| <p class="section-text">가장 HOT한 중고거래 물품을 판다 마켓에서 확인해 보세요</p> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </section> | ||
| <section class="white-section"> | ||
| <div class="container"> | ||
| <div class="feature-section"> | ||
| <div class="contents"> | ||
| <span class="section-heading"> | ||
| Search | ||
| </span> | ||
| <h2 class="title"> | ||
| 구매를 원하는<br> | ||
| 상품을 검색하세요 | ||
| </h2> | ||
| <p class="section-text">구매하고 싶은 물품을 검색해서 쉽게 찾아보세요</p> | ||
| </div> | ||
| <img class="feature-image" src="img/zoom.png" alt="lens-pic"> | ||
| </div> | ||
| </div> | ||
| </section> | ||
| <section class="white-section"> | ||
| <div class="container"> | ||
| <div class="feature-section"> | ||
| <img class="feature-image" src="img/sq.png" alt="sellWishProduct"> | ||
| <div class="contents"> | ||
| <span class="section-heading"> | ||
| Register | ||
| </span> | ||
| <h2 class="title"> | ||
| 판매를 원하는<br> | ||
| 상품을 등록하세요 | ||
| </h2> | ||
| <p class="section-text">어떤 물건이든 판매하고 싶은 상품을 쉽게 등록하세요</p> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </section> | ||
| <section class="blue-section"> | ||
| <div class="container"> | ||
| <div class="hero-section"> | ||
| <div class="hero-content"> | ||
| <h2 class="title"> | ||
| 믿을 수 있는<br> | ||
| 판다마켓 중고 거래 | ||
| </h2> | ||
| </div> | ||
| <img class="banner-image" src="img/pandaLa.png" alt="greeting_panda"> | ||
| </div> | ||
| </div> | ||
| </section> | ||
| <footer> | ||
| <div class="foot-background"> | ||
| <div class="footer-container"> | ||
| <div class="codeit-2024"> | ||
| @codeit-2024 | ||
| </div> | ||
| <div class="footer-links"> | ||
| <a class="link-line" href="/privacy">Privacy Policy</a> | ||
| <a class="link-line" href="/faq">FAQ</a> | ||
| </div> | ||
| <ul class="social-links"> | ||
| <li> | ||
| <a href="https://www.facebook.com" target="_blank"> | ||
| <img class="social-icon" src="img/Facebook.png" alt="Facebook"> | ||
| </a> | ||
| </li> | ||
| <li> | ||
| <a href="https://www.twitter.com" target="_blank"> | ||
| <img class="social-icon" src="img/twiter.png" alt="twitter"> | ||
| </a> | ||
| </li> | ||
| <li> | ||
| <a href="https://www.youtube.com" target="_blank"> | ||
| <img class="social-icon" src="img/youtube.png" alt="youtube"> | ||
| </a> | ||
| </li> | ||
| <li> | ||
| <a href="https://www.instagram.com" target="_blank"> | ||
| <img class="social-icon" src="img/instagram.png" alt="instagram"> | ||
| </a> | ||
| </li> | ||
| </ul> | ||
| </div> | ||
| </div> | ||
| </footer> | ||
| </body> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,47 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="ko"> | ||
| <head> | ||
| <meta charset="utf-8"> | ||
| <title>로그인</title> | ||
| <link rel="stylesheet" as="style" crossorigin href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/static/pretendard.css"> | ||
| <link rel="stylesheet" href="styleLogin.css"> | ||
| </head> | ||
| <body> | ||
| <div class="content"> | ||
| <div class="head-img"> | ||
| <a class="login-link" href="/"> | ||
| <img class="pandaMarketImg" src="img/logo.png"> | ||
| </a> | ||
| </div> | ||
| <div> | ||
| <p>이메일</p> | ||
| <input type="email" name="userName" id="userName"> | ||
| <p>비밀번호</p> | ||
| <input type="password" name="userPassword" id="userPassword"> | ||
| </div> | ||
| <div class="content-login"> | ||
| <a class="login-button" href="/login">로그인</a> | ||
| </div> | ||
| <div> | ||
| <div class="blue-section"> | ||
| <p class="simpleLogin">간편 로그인하기</p> | ||
| <ul class="social-links"> | ||
| <li> | ||
| <a href="https://www.google.com/" target="_blank"> | ||
| <img class="social-icon" src="img/google.png" alt="google"> | ||
| </a> | ||
| </li> | ||
| <li> | ||
| <a href="https://www.kakaocorp.com/page/" target="_blank"> | ||
| <img class="social-icon" src="img/kakao.png" alt="kakao"> | ||
| </a> | ||
| </li> | ||
| </ul> | ||
| </div> | ||
| </div> | ||
| <div class="foot-content"> | ||
| <p class="insa">판다마켓은 처음이신가요?</p> | ||
|
Collaborator
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 class="membership" href="signup.html">회원가입</a> | ||
| </div> | ||
| </div> | ||
| </body> | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,48 @@ | ||
| /* http://meyerweb.com/eric/tools/css/reset/ | ||
| v2.0 | 20110126 | ||
| License: none (public domain) | ||
| */ | ||
|
|
||
| html, body, div, span, applet, object, iframe, | ||
| h1, h2, h3, h4, h5, h6, p, blockquote, pre, | ||
| a, abbr, acronym, address, big, cite, code, | ||
| del, dfn, em, img, ins, kbd, q, s, samp, | ||
| small, strike, strong, sub, sup, tt, var, | ||
| b, u, i, center, | ||
| dl, dt, dd, ol, ul, li, | ||
| fieldset, form, label, legend, | ||
| table, caption, tbody, tfoot, thead, tr, th, td, | ||
| article, aside, canvas, details, embed, | ||
| figure, figcaption, footer, header, hgroup, | ||
| menu, nav, output, ruby, section, summary, | ||
| time, mark, audio, video { | ||
| margin: 0; | ||
| padding: 0; | ||
| border: 0; | ||
| font-size: 100%; | ||
| font: inherit; | ||
| vertical-align: baseline; | ||
| } | ||
| /* HTML5 display-role reset for older browsers */ | ||
| article, aside, details, figcaption, figure, | ||
| footer, header, hgroup, menu, nav, section { | ||
| display: block; | ||
| } | ||
| body { | ||
| line-height: 1; | ||
| } | ||
| ol, ul { | ||
| list-style: none; | ||
| } | ||
| blockquote, q { | ||
| quotes: none; | ||
| } | ||
| blockquote:before, blockquote:after, | ||
| q:before, q:after { | ||
| content: ''; | ||
| content: none; | ||
| } | ||
| table { | ||
| border-collapse: collapse; | ||
| border-spacing: 0; | ||
| } |
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.
❗️ 수정요청
해당 파일은 mac에서 작업하실 때 생성되는 파일입니다.
해당 폴더에 대한 정보를 가지고 있는 파일로, 이러한 파일들은 git repo에 올라갈 이유가 없습니다~
git repo에는 공유할필요가 있는 파일들만 올라가면 되기 때문에 이러한 파일들은 git에 올라가지 않도록 관리하는 것이 좋습니다.
관련한 블로그 글이 있으니 읽어보시고, 제거하시는 것을 추천드릴께요~
블로그