Skip to content

[문수현] Sprint4 #165

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

Open
wants to merge 4 commits into
base: Basic-문수현
Choose a base branch
from
Open
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
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

스프린트 미션 1 배포 사이트
스프린트 미션 1 템플릿 코드 확인하기
아래 링크를 통해 강의 학습 후 만들어봐야 할 실습 과제 디자인을 확인해 보세요.

Binary file added assets/Frame 2609420.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 assets/Group 33677.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/KakaoTalk_logo.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 assets/Property 1=Default.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 assets/Property 1=Variant2.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 assets/Property 1=sm.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 assets/Property [email protected]
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 assets/desktop_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 assets/desktop_05.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 assets/footer.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 assets/gnb.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 assets/ic_facebook.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 assets/ic_google.jpg
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 assets/ic_instagram.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 assets/ic_twitter.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 assets/ic_youtube.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 assets/type=solid, status=default.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
142 changes: 142 additions & 0 deletions css/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,142 @@
/* General Styles */
body {
font-family: 'Inter', sans-serif;
background-color: #E3F2FD;
margin: 0;
padding: 0;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}

/* Header */
header {
background: #FFFFFF;
width: 100%;
display: flex;
justify-content: center;
}

/* Header Container */
.header-container {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
max-width: 1920px;
padding: 20px 200px; /* Ensures 200px margin on both sides */
box-sizing: border-box;
}

/* Logo Section */
.logo {
display: flex;
align-items: center;
gap: 10px; /* Spacing between logo image and text */
text-decoration: none;
}

.logo img {
height: 50px; /* Adjust size */
}

/* Login Button */
.login-btn img {
height: 40px; /* Adjust size */
cursor: pointer;
}

/* Hero Section */
.hero {
width: 100%;
display: flex;
justify-content: center;
}

.hero img {
width: 100%;
max-width: 1920px;
}

/* Info Section */
.info {
width: 100%;
display: flex;
justify-content: center;
}

.info img {
width: 100%;
max-width: 1200px;
}

/* Footer */
footer {
background: #0D1117;
color: white;
width: 100%;
display: flex;
justify-content: center;
}

.footer-container {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1920px;
width: 100%;
padding: 20px 200px;
}

/* Footer Text */
.footer-text {
flex: 1;
text-align: left;
}

/* Centered Footer Links */
.footer-links {
flex: 1;
display: flex;
justify-content: center;
gap: 20px;
}

/* Footer Links Style */
.footer-links a {
color: white;
text-decoration: none;
font-size: 14px;
}

.footer-links a:hover {
text-decoration: underline;
}

/* Right-aligned Social Media Icons */
.footer-icons {
flex: 1;
display: flex;
justify-content: flex-end;
gap: 15px;
align-items: center;
}

/* Social Media Icons */
.footer-icons img {
width: 24px;
height: 24px;
transition: transform 0.2s ease-in-out;
cursor: pointer;
}

/* Hover Effect */
.footer-icons img:hover {
transform: scale(1.1);
}

/* Cursor for Clickable Elements */
a, button {
cursor: pointer;
}
21 changes: 21 additions & 0 deletions faq.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQ - 판다마켓</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>

<header>
<a href="/">← 홈으로 돌아가기</a>
</header>

<main class="centered-content">
<h1>FAQ</h1>
<p>이 페이지는 판다마켓의 자주 묻는 질문(FAQ)을 설명합니다.</p>
</main>

</body>
</html>
67 changes: 67 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>판다마켓</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>

<!-- Header -->
<header>
<div class="header-container">
<a href="/" class="logo">
<img src="assets/Property [email protected]" alt="판다마켓 로고">
</a>
<a href="/login.html" class="login-btn">
<img src="assets/type=solid, status=default.png" alt="로그인 버튼">
</a>
</div>
</header>

<!-- Hero Section -->
<section class="hero">
<img src="assets/desktop_01.png" alt="메인 배너">
</section>

<!-- Info Section -->
<section class="info">
<img src="assets/Frame 2609420.png" alt="정보 카드 섹션">
</section>

<!-- Footer -->
<footer>
<div class="footer-container">
<!-- Left-aligned Footer Text -->
<div class="footer-text">
<p>©codeit - 2024</p>
</div>

<!-- Centered Links -->
<div class="footer-links">
<a href="/privacy.html">Privacy Policy</a>
<a href="/faq.html">FAQ</a>
</div>

<!-- Right-aligned Social Media Icons -->
<div class="footer-icons">
<a href="https://facebook.com" target="_blank">
<img src="assets/ic_facebook.png" alt="Facebook">
</a>
<a href="https://twitter.com" target="_blank">
<img src="assets/ic_twitter.png" alt="Twitter">
</a>
<a href="https://youtube.com" target="_blank">
<img src="assets/ic_youtube.png" alt="YouTube">
</a>
<a href="https://instagram.com" target="_blank">
<img src="assets/ic_instagram.png" alt="Instagram">
</a>
</div>
</div>
</footer>

</body>
</html>
Loading