-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfaq.html
More file actions
100 lines (92 loc) · 5.65 KB
/
faq.html
File metadata and controls
100 lines (92 loc) · 5.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQ - Winter of Code TRC</title>
<link rel="icon" href="./icons/WOC_LOGO_FINAL.png" type="image/x-icon">
<link rel="stylesheet" href="stylefaq.css">
</head>
<body>
<nav>
<div class="nav-container">
<div class="nav-socials">
<a href="wwwi.google.com" target="_blank" rel="noreferrer">
<img src="./icons/WOC_LOGO_FINAL.png" alt="WOC" width="200" height="200">
</a>
</div>
<div id="navigation">
<ul class="nav-main">
<li><a href="./index.html" class="nav-link">Home</a></li>
<li><a href="#speaker" class="nav-link">Speakers</a></li>
<li><a href="#prizes" class="nav-link">Prizes</a></li>
<li><a href="./schedule.html" class="nav-link">Schedule</a></li>
<li><a href="./meet_the_team.html" class="nav-link">Team</a></li>
<li><a href="./rules.html" class="nav-link">Rules</a></li>
<li><a href="./faq.html" class="nav-link nav-current">FAQs</a></li>
</ul>
</div>
</div>
</nav>
<section>
<div class="greeting-container">
<div class="greeting">
<h2>FAQs</h2>
<p>Need clarification on something we haven't covered?</p>
<p>You can write to us at xyz@vit.ac.in too.</p>
</div>
</div>
<div class="faq-container">
<div class="faq-item">
<div class="faq-question" onclick="toggleAnswer(1)">Q: What is the purpose of the hackathon?</div>
<div class="faq-answer" id="answer1">A: The hackathon is an event where participants collaborate to create innovative projects within a specified timeframe. It's an opportunity to learn, network, and showcase your skills.</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleAnswer(2)">Q: How do I register for the hackathon?</div>
<div class="faq-answer" id="answer2">A: Registration details can be found on our official website. Follow the registration process to secure your spot and receive further instructions.</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleAnswer(3)">Q: Are there any specific requirements for participation?</div>
<div class="faq-answer" id="answer3">A: Typically, hackathons are open to individuals with various skill levels. Check the event details for any specific requirements or prerequisites.</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleAnswer(4)">Q: Are there any specific requirements for participation?</div>
<div class="faq-answer" id="answer4">A: Typically, hackathons are open to individuals with various skill levels. Check the event details for any specific requirements or prerequisites.</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleAnswer(5)">Q: Are there any specific requirements for participation?</div>
<div class="faq-answer" id="answer5">A: Typically, hackathons are open to individuals with various skill levels. Check the event details for any specific requirements or prerequisites.</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleAnswer(6)">Q: Are there any specific requirements for participation?</div>
<div class="faq-answer" id="answer6">A: Typically, hackathons are open to individuals with various skill levels. Check the event details for any specific requirements or prerequisites.</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleAnswer(7)">Q: Are there any specific requirements for participation?</div>
<div class="faq-answer" id="answer7">A: Typically, hackathons are open to individuals with various skill levels. Check the event details for any specific requirements or prerequisites.</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleAnswer(8)">Q: Are there any specific requirements for participation?</div>
<div class="faq-answer" id="answer8">A: Typically, hackathons are open to individuals with various skill levels. Check the event details for any specific requirements or prerequisites.</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleAnswer(9)">Q: Are there any specific requirements for participation?</div>
<div class="faq-answer" id="answer9">A: Typically, hackathons are open to individuals with various skill levels. Check the event details for any specific requirements or prerequisites.</div>
</div>
</div>
</section>
<footer>
<p>© 2023 Tech Researchers Club VIT'C. Made with 🖤️ by Tech Researchers Club VIT'C. All rights reserved.</p>
</footer>
<script>
function toggleAnswer(id) {
var answer = document.getElementById('answer' + id);
if (answer.style.display === 'block') {
answer.style.display = 'none';
} else {
answer.style.display = 'block';
}
}
</script>
</body>
</html>