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

AWS-Student-Community-Day_FAQsection_Srishti-Chugh #24

Open
wants to merge 2 commits into
base: main
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
40 changes: 40 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -912,6 +912,46 @@ <h4>
</div>
</div>
</section>
<section id = "faqs">
<div class="faq-container">
<h2 style="text-align: center;color:#232f3e; font-family: 'Poppins', sans-serif;">Frequently Asked Questions</h2>

<div class="question">Q: What is AWS Cloud Club at IGDTUW?</div>
<div class="answer">Answer: The AWS Cloud Club at IGDTUW is a student organization dedicated to promoting knowledge and skills related to cloud computing using Amazon Web Services (AWS).</div>

<div class="question">Q: How can I join AWS Cloud Club at IGDTUW?</div>
<div class="answer">Answer: To join AWS Cloud Club at IGDTUW, you can reach out to the club coordinators or attend their recruitment events.</div>

<div class="question">Q: What activities does AWS Cloud Club at IGDTUW organize?</div>
<div class="answer">Answer: AWS Cloud Club at IGDTUW organizes workshops, seminars, hackathons, and other events to help students learn about AWS services, cloud computing concepts, and real-world applications.</div>

<div class="question">Q: What are the benefits of joining AWS Cloud Club at IGDTUW?</div>
<div class="answer">Answer: Joining AWS Cloud Club at IGDTUW provides opportunities to enhance your cloud computing skills, network with industry professionals, and participate in hands-on projects.</div>

<div class="question">Q: Can beginners join AWS Cloud Club at IGDTUW?</div>
<div class="answer">Answer: Yes, AWS Cloud Club at IGDTUW welcomes students of all skill levels, including beginners who are interested in learning about cloud computing and AWS services.</div>
<div class="question">Q: What resources does AWS Cloud Club at IGDTUW provide for its members?</div>
<div class="answer">Answer: AWS Cloud Club at IGDTUW offers access to AWS credits, learning materials, and online resources to support members in their cloud computing journey.</div>

<div class="question">Q: Are there any prerequisites for joining AWS Cloud Club at IGDTUW?</div>
<div class="answer">Answer: No specific prerequisites are required for joining AWS Cloud Club at IGDTUW. Students from all disciplines with an interest in cloud computing are encouraged to participate.</div>

</div>

<script>

// Get all question elements
const questions = document.querySelectorAll('.question');

// Add click event listener to each question
questions.forEach(question => {
question.addEventListener('click', () => {
const answer = question.nextElementSibling; // Get the next sibling which is the answer
answer.style.display = answer.style.display === 'block' ? 'none' : 'block'; // Toggle answer display
});
});
</script>
      </section>
</main>

<div class="footer">
Expand Down
44 changes: 43 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,49 @@ iframe {
}

.footer a {
color: #fff;
color:#232f3e;
text-decoration: none;
font-weight: bold;
}
#faqs {
margin: 2rem;
}



.faq-container {
border-radius: 30px;
font-size: 1.1rem;
max-width: 800px;
margin: 0 auto;
}
.question {
white-space: nowrap; /* Prevent line breaks */
overflow: hidden; /* Hide overflow */


cursor: pointer;
padding: 10px 10px;
border-bottom: 1px solid #7f7979;
color: black;/* Change color */
transition: color 0.3s ease;
}
.question:hover {
color: orange;

}


.answer {
display: none;
padding: 10px 10px;
border: 1px solid black;
color: rgb(72, 7, 133);
transition: display 0.3s ease;
border-radius: 5px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.answer.show {
display: block;
opacity: 1; /* Fade in by changing opacity to 1 */
}