-
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
[소중모] Sprint 1 #32
The head ref may contain hidden characters: "Basic-\uC18C\uC911\uBAA8"
[소중모] Sprint 1 #32
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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> | ||
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. 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="인기 상품"> | ||
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. 이미지에 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> |
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; | ||
|
||
} |
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> |
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.
인덴트가 깔끔하고, 코드가 읽기 쉽네요!! 💯