-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaq.html
More file actions
101 lines (93 loc) · 3.32 KB
/
faq.html
File metadata and controls
101 lines (93 loc) · 3.32 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
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>FAQ | HackBlue</title>
<link rel="stylesheet" type="text/css" href="./style.css">
<style>
.collapsible {
background-color: #002533;
color: rgb(253, 237, 14);
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
}
.collapsible:hover {
background-color: #013a4e;
color: rgb(253, 237, 14);
}
.collapsible:after {
content: '\002B';
color: white;
font-weight: bold;
float: right;
margin-left: 5px;
}
.active:after {
content: "\2212";
}
.content {
padding: 0 18px;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
background-color: #73878c;
}
</style>
</head>
<body>
<header>
<nav style="height:70px">
<a href="index.html"><img src="img/hb-logo-white.png" alt="HackBlue Logo" style="width:auto; height:70px; position:absolute;"></a>
<ul style="height:70px;">
<li><a href="index.html">Home</a></li>
<li><a href="what-we-do.html">What We Do</a></li>
<li><a href="team.html">Our Team</a></li>
<li><a href="sponsorships.html">Sponsorships</a></li>
<li><a style="color:white;" href="faq.html">FAQ</a></li>
<li><a href="calendar.html">Calendar</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<h1 class="header-content">FAQ</h1>
<br><br>
<button class="collapsible">How can I join HackBlue?</button>
<div class="content">
<p class="text-content">New prospective members can join by attending one of our mass meetings, held at the beginning of each semester.
Information about mass meeting dates/times can be found on the HackBlue website once they are scheduled. We can also be
found at Festifall and Winterfest, or reached through our <a style="color:rgb(253, 237, 14);" href="contact.html">Contact</a> page.</p>
</div>
<button class="collapsible">What are the HackBlue membership requirements?</button>
<div class="content">
<p class="text-content">In order to maintain membership with HackBlue, one must be an active member of at least one committee, as well as attend our biweekly meetings. There is no membership fee.</p>
</div>
<button class="collapsible">Do I need computer science experience to join HackBlue?</button>
<div class="content">
<p class="text-content">No computer science experience is required to be a HackBlue member!</p>
</div>
<footer>
<p style="text-align: center">Copyright ©2022 HackBlue. All Rights Reserved | Created by <a style="font-size: 16px;" href="team.html#team">Web Development Committee</a></p>
</footer>
<script>
var coll = document.getElementsByClassName("collapsible");
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function() {
this.classList.toggle("active");
var content = this.nextElementSibling;
if (content.style.maxHeight){
content.style.maxHeight = null;
} else {
content.style.maxHeight = content.scrollHeight + "px";
}
});
}
</script>
</body>
</html>