Skip to content

Commit

Permalink
[김주동] sprint4 (#60)
Browse files Browse the repository at this point in the history
* 스프린트미션 1차 산출물

* 20240817 - Sprint mission 2 commit.

* FE10 Sprint Mission 3 commit

* 20240831 - Sprint mission 4 commit.
  • Loading branch information
joodongkim authored Sep 2, 2024
1 parent cdf622c commit a8107d7
Show file tree
Hide file tree
Showing 28 changed files with 1,162 additions and 533 deletions.
292 changes: 0 additions & 292 deletions css/styles.css

This file was deleted.

66 changes: 61 additions & 5 deletions faq.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,67 @@
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQ</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQ - Frequently Asked Questions</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 20px;
}
.faq-container {
max-width: 800px;
margin: 0 auto;
}
.faq-item {
margin-top: 20px;
}
.faq-question {
font-weight: bold;
cursor: pointer;
}
.faq-answer {
display: none;
margin-top: 10px;
padding-left: 20px;
}
</style>
</head>
<body>
<h1>FAQ 화면입니다.</h1>
<main class="faq-container">
<h1>Frequently Asked Questions</h1>
<hr />

<div class="faq-item">
<div class="faq-question">Q: What is your return policy?</div>
<div class="faq-answer">A: We offer a 30-day return policy for all unused items in their original packaging.</div>
</div>

<div class="faq-item">
<div class="faq-question">Q: How long does shipping take?</div>
<div class="faq-answer">A: Shipping typically takes 3-5 business days for domestic orders and 7-14 business days for international orders.</div>
</div>

<div class="faq-item">
<div class="faq-question">Q: Do you offer international shipping?</div>
<div class="faq-answer">A: Yes, we ship to most countries worldwide. Shipping costs and delivery times may vary depending on the destination.</div>
</div>
</main>

<footer>
<hr />
<div id="copyright">©codeit - 2024</div>
</footer>

<script>
document.querySelectorAll('.faq-question').forEach(question => {
question.addEventListener('click', () => {
const answer = question.nextElementSibling;
answer.style.display = answer.style.display === 'none' ? 'block' : 'none';
});
});
</script>
</body>
</html>
</html>
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
Binary file added images/logo/og-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Loading

0 comments on commit a8107d7

Please sign in to comment.