-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfaq.html
114 lines (113 loc) · 4.76 KB
/
faq.html
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, inital-scale=1.0" />
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
<title>FAQs</title>
<link rel="stylesheet" href="css/faq.css"/>
<script src="js/loadhtml.js"></script>
</head>
<body>
<div w3-include-html="common/navbar.html"></div>
<section>
<h2 class="title">Frequently Asked Questions</h2>
<!-- Question1 -->
<div class="faq">
<!-- Question1 -->
<div class="question">
<h3>Who is eligible to participate?</h3>
<svg width = "15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="white" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<p>
Contrary to common opinion, only programmers and computer science students are eligible to apply. Everyone is invited to join WeHack, from middle school age to those looking for additional experience. WeHack is searching for participants with innovative and creative ideas that will impact society, not just those who know how to code.
</p>
</div>
</div>
<!-- Question2 -->
<div class="faq">
<div class="question">
<h3>Is it possible for a team to have members from both middle and high schools?</h3>
<svg width = "15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="white" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<p>
Absolutely yes! If a team has two members in high school or above, this team will be considered a high school group. Even if a team only has one member from high school, it will be counted as a middle school team.
</p>
</div>
</div>
<!-- Question3 -->
<div class="faq">
<div class="question">
<h3>What platform will the hackathon take place on?</h3>
<svg width = "15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="white" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<p>
WeHack will host online hackathons to make it easier for candidates from all around the world to compete. We'll mainly be using Zoom and Discord, so make sure you have a qualified internet connection and a calm mind before the battle!
</p>
</div>
</div>
<!-- Question4 -->
<div class="faq">
<div class="question">
<h3>Can I join even if I don't have a teammate?</h3>
<svg width = "15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="white" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<div class="answer">
<p>
Don't worry. There will be a question in the application form where you may pick whether you want to join alone, with a team, or without a team. If you'd like to join a team but don't have one yet, we'll be the ones "searching" for good teammates for you!
</p>
</div>
</div>
<!-- Question5 -->
<div class="faq">
<div class="question">
<h3>What should I do if I run across an issue while playing?</h3>
<svg width = "15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="white" stroke-width="7" stroke-linecap="round"/>
</svg>
</div>
<!-- Answer1 -->
<div class="answer">
<p>
Each team will be assigned a mentor with hackathon expertise who will give help and answer questions throughout the competition. Don't hesitate to contact the Organizers or Advisory Board directly if you need further assistance. You may also reach out to us via the following resources:<br>
Hotline: (+84) 033 594 4507<br>
Email: wedo.organization22@gmail.com
</p>
</div>
</div>
<!-- <h4 class="contact">Contact Us</h4>
<h5 class="fb">Facebook: We Do</h5>
<h5 class="email">Email: abc@gmail.com</h5> -->
<p class="contact">Further questions? Shoot us an email at <a href="mailto:wedo.organization22@gmail.com">wedo.organization22@gmail.com</a> or message us on <a href="https://www.facebook.com/WeHack-100514952675925" target="blank">Facebook</a>/<a href="https://www.instagram.com/_wehack_2022/?igshid=YmMyMTA2M2Y=" target="blank">Instagram</a></p>
</section>
<div w3-include-html="common/footer.html"></div>
<script>
includeHTML();
const faqs = document.querySelectorAll(".faq");
faqs.forEach(faq => {
faq.addEventListener("click", () => {
faq.classList.toggle("active");
});
});
function nav() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
</body>
</html>