-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEvents.html
More file actions
49 lines (41 loc) · 1.82 KB
/
Events.html
File metadata and controls
49 lines (41 loc) · 1.82 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
<HTML>
<title>GMUIIT | Events</title>
<link rel="stylesheet" href="https://gmuiit.github.io/index.css"/>
<body class="generic">
<div class="navbar">
<a href="https://gmuiit.github.io/">HOME</button>
<a href = "https://gmuiit.github.io/Events.html">EVENTS</button>
<a href = "https://gmuiit.github.io/projects.html">PROJECTS</button>
<a href = "https://gmuiit.github.io/workshops.html">WORKSHOPS</button>
<a href = "https://docs.google.com/forms/d/e/1FAIpQLSd1pqZuWPDzFYQOTI8DKf_U1VNVqHLvEifAxkDql0b0pGvG7Q/viewform">MAILING</a>
</div>
<p style="height:8%;top:0;"></p>
<H1 class="Titl" style="Left:50%">Events:</H1>
<button class="accordion">General Body Meeting 2/27/20</button>
<div class="panel">
<p>This is our big general body meeting for the Spring 2020 semester! This event will be a place to meet
all the members of the Inventors and Innovations Team. During the GBM, we will meet the Board,
layout the project plans for 2020 and group up to make foxhole radios and test them out!
Food will be provided, be sure to be there from 3:30pm-6:00pm on February 27th at JC room 239A! </p>
</div>
<img src = "lIIT GBM.JPG" style = "height:35%;width:15%"/>
<button class="accordion">First build meet! 3/04/20</button>
<div class="panel">
<p>It will be located in the MIX at 6:30PM. We will be discussing the build specs and putting people into teams for the construction of the Z80 gameboy project!</p>
</div>
<script>
var acc = document.getElementsByClassName("accordion");
var i;
for (i = 0; i < acc.length; i++) {
acc[i].addEventListener("click", function() {
this.classList.toggle("active");
var panel = this.nextElementSibling;
if (panel.style.display === "block") {
panel.style.display = "none";
} else {
panel.style.display = "block";
}
});
}
</script>
</HTML>