Skip to content
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

[소중모] Sprint 1 #32

Merged
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 12-Sprint-Mission/Group 33680.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 12-Sprint-Mission/Group.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 12-Sprint-Mission/Img_home_01.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 12-Sprint-Mission/Img_home_02.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 12-Sprint-Mission/Img_home_03.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 12-Sprint-Mission/Img_home_bottom.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
76 changes: 76 additions & 0 deletions 12-Sprint-Mission/PandaMarket.html
Copy link
Collaborator

Choose a reason for hiding this comment

The 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,76 @@
<!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" href="style.css">
</head>

<body>
<header>
<a href="/"><img src="pandamarket.png" alt="판다마켓"></a>
<a href="login.html" id="loginButton" class="button">로그인</a>
Copy link
Collaborator

Choose a reason for hiding this comment

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

id 보다는 특별한 이름의 class를 지정해주시는 걸 추천드려요! (id 는 훨씬 더 특별한 친구를 위해 아껴두는 걸로..!)

</header>

<main>

<section id="tree" class="banner">
<div class="picture">
<h1>일상의 모든 물건을<br/>거래해 보세요</h1>
<a href="items.html" class="button click-button">구경하러 가기</a>
</div>
</section>

<section class="picture">
<div class="feature">
<img src="Img_home_01.png" alt="인기 상품">
Copy link
Collaborator

Choose a reason for hiding this comment

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

이미지에 alt 넣어주신 거 👍 👍

<div class="feature-content">
<h2 class="feature-tag">Hot item</h2>
<h1>인기 상품을<br/>확인해 보세요</h1>
<p class="feature-description">가장 HOT한 중고거래 물품을<br/>판다마켓에서 확인해 보세요</p>
</div>
</div>

<div class="feature">
<div class="feature-content">
<h2 class="feature-tag">Search</h2>
<h1>구매를 원하는<br/>상품을 검색하세요</h1>
<p class="feature-description">구매하고 싶은 물품은 검색해서<br/>쉽게 찾아보세요</p>
</div>
<img src="Img_home_02.png" alt="검색 기능">
</div>

<div class="feature">
<img src="Img_home_03.png" alt="판매 상품 등록">
<div class="feature-content">
<h2 class="feature-tag">Register</h2>
<h1>판매를 원하는<br/>상품을 등록하세요</h1>
<p class="feature-description"> 어떤 물건이든 판매하고 싶은 상품을<br/>쉽게 등록하세요</p>
</div>
</div>

</section>

<section id="ground" class="banner">
<div class="picture">
<h1>믿을 수 있는<br/>판다마켓 중고거래</h1>
</div>
</section>
</main>

<footer>
<div>©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"><img src="ic_facebook.svg" alt="페이스북" /></a>
<a href="https://twitter.com/" target="_blank"><img src="ic_twitter.svg" alt="트위터" /></a>
<a href="https://www.youtube.com/" target="_blank"><img src="ic_youtube.svg" alt="유튜브" /></a>
<a href="https://www.instagram.com/" target="_blank"><img src="ic_instagram.svg" alt="인스타그램"/></a>
</div>
</footer>
</body>
</html>
3 changes: 3 additions & 0 deletions 12-Sprint-Mission/ic_facebook.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions 12-Sprint-Mission/ic_instagram.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions 12-Sprint-Mission/ic_twitter.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions 12-Sprint-Mission/ic_youtube.svg
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 12-Sprint-Mission/pandamarket.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
107 changes: 107 additions & 0 deletions 12-Sprint-Mission/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

header {
width: 100%;
height: 70px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 200px;
background-color: #ffffff;
}

#loginButton {
font-size: 20px;
border-radius: 10px;
padding: 10px 20px;
}

.picture {
max-width: 1000px;
margin: 0 auto;
width: 100%;
}

h1 {
font-size: 50px;
}

.button {
background-color: #3692ff;
color: #ffffff;
display: inline-flex;
align-items: center;
justify-content: center;
}



.click-button {
border-radius: 50px;
padding: 20px 120px;
}

.banner {
background-color: #cfe5ff;
height: 540px;
display: flex;
align-items: center;
background-repeat: no-repeat;
background-position: 60% bottom;
background-size: 30%;
}

#tree {
background-image: url("Group 33680.png");
}

#ground {
background-image: url("Img_home_bottom.png");
}

.feature {
padding: 138px 0;
display: flex;
align-items: center;
gap: 5%;
}

.feature-content {
display: inline;
}

.feature-tag {
color: #3692ff;
font-size: 20px;
margin-bottom: 10px;
}

.feature-description {
font-size: 22px;
margin-top: 25px;
}

footer {
background-color: #111827;
color: #ffffff;
display: flex;
justify-content: space-between;
align-items: center;
padding: 50px 200px 100px 200px;
font-size: 15px;
}

#footerMenu {
display: flex;
gap: 50px;
}

#socialMedia {
display: flex;
gap: 12px;

}
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.
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 added 12-Sprint-Mission/스프린트 미션/Group.png
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.
76 changes: 76 additions & 0 deletions 12-Sprint-Mission/스프린트 미션/PandaMarket.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
<!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" href="style.css">
</head>

<body>
<header>
<a href="/"><img src="pandamarket.png" alt="판다마켓"></a>
<a href="login.html" id="loginButton" class="button">로그인</a>
</header>

<main>

<section id="tree" class="banner">
<div class="picture">
<h1>일상의 모든 물건을<br/>거래해 보세요</h1>
<a href="items.html" class="button click-button">구경하러 가기</a>
</div>
</section>

<section class="picture">
<div class="feature">
<img src="Img_home_01.png" alt="인기 상품">
<div class="feature-content">
<h2 class="feature-tag">Hot item</h2>
<h1>인기 상품을<br/>확인해 보세요</h1>
<p class="feature-description">가장 HOT한 중고거래 물품을<br/>판다마켓에서 확인해 보세요</p>
</div>
</div>

<div class="feature">
<div class="feature-content">
<h2 class="feature-tag">Search</h2>
<h1>구매를 원하는<br/>상품을 검색하세요</h1>
<p class="feature-description">구매하고 싶은 물품은 검색해서<br/>쉽게 찾아보세요</p>
</div>
<img src="Img_home_02.png" alt="검색 기능">
</div>

<div class="feature">
<img src="Img_home_03.png" alt="판매 상품 등록">
<div class="feature-content">
<h2 class="feature-tag">Register</h2>
<h1>판매를 원하는<br/>상품을 등록하세요</h1>
<p class="feature-description"> 어떤 물건이든 판매하고 싶은 상품을<br/>쉽게 등록하세요</p>
</div>
</div>

</section>

<section id="ground" class="banner">
<div class="picture">
<h1>믿을 수 있는<br/>판다마켓 중고거래</h1>
</div>
</section>
</main>

<footer>
<div>©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"><img src="ic_facebook.svg" alt="페이스북" /></a>
<a href="https://twitter.com/" target="_blank"><img src="ic_twitter.svg" alt="트위터" /></a>
<a href="https://www.youtube.com/" target="_blank"><img src="ic_youtube.svg" alt="유튜브" /></a>
<a href="https://www.instagram.com/" target="_blank"><img src="ic_instagram.svg" alt="인스타그램"/></a>
</div>
</footer>
</body>
</html>
3 changes: 3 additions & 0 deletions 12-Sprint-Mission/스프린트 미션/ic_facebook.svg
3 changes: 3 additions & 0 deletions 12-Sprint-Mission/스프린트 미션/ic_instagram.svg
3 changes: 3 additions & 0 deletions 12-Sprint-Mission/스프린트 미션/ic_twitter.svg
10 changes: 10 additions & 0 deletions 12-Sprint-Mission/스프린트 미션/ic_youtube.svg
Loading
Loading