forked from WoodchipsFTC/WoodchipsFTC.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsummer_camp.html
85 lines (68 loc) · 2.8 KB
/
summer_camp.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
<!DOCTYPE html>
<html>
<head>
<title>Woodchips</title>
<link rel="stylesheet" href="style.css" />
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Noto+Sans|Roboto" rel="stylesheet">
<link rel="shortcut icon" type="image/x-icon" href="logo_square.png" />
</head>
<body>
<h1><div class = center>WOODCHIPS</div></h1>
<ul>
<li><a href="index.html">About Us</a></li>
<li><a href="sponsors.html">Our Sponsors</a></li>
<li><a href="summer_camp.html">Summer Camp</a></li>
<li style="float:right"><a href="contact us.html">Contact Us</a></li>
</ul>
<div class = center><h2 class=camptitle>Ridgewood RHS FTC Robotics Team<br>
Summer Stem Camp</h2>
<h2 class="date"> 8/26 - 8/30</h2>
<!--Information Accordion-->
<button class="accordion"><h1>What is taught</h1></button>
<div class="panel">
<div class="campinfo">Kids will be taught coding through scratch, which is a simplified block based coding language
which will teach them valuable knowledge and concepts to help set them on a path to succeed in programming based fields. <br><br>
Children will also be able to construct a Lego Mindstorms robot which will
teach them valuable skills in engineering to allow them flourish in engineering based fields.
<br><br>
More advanced students will also have the ability to create robots using tetrix kits.
</div>
</div>
<button class="accordion"><h1>Dates and times</h1></button>
<div class="panel">
<div class="campinfo">Monday August 26th through Thursday August 29th: 9am to 1pm<br>Before Care from 8:30am to 9:00am and After Care from 1:00pm to 1:30pm are provided at an additional cost of $10 for both</div>
</div>
<button class="accordion"><h1>Location</h1></button>
<div class="panel">
<div class="campinfo">The camp will be located in George Washington Middle School in Ridgewood New Jersey.</div>
</div>
<p>
Limited availability, 30 students max, First come first serve<br>
Lunch and tee shirts included<br>
Grades 4-8<br>
$250 mon-fri or $50 for individual sessions per day(available mon-thurs)<br>
</p
</div>
<!-- form goes here -->
<!-- accordion script -->
<script>
var acc = document.getElementsByClassName("accordion");
var i;
for (i = 0; i < acc.length; i++) {
acc[i].addEventListener("click", function() {
/* Toggle between adding and removing the "active" class,
to highlight the button that controls the panel */
this.classList.toggle("active");
/* Toggle between hiding and showing the active panel */
var panel = this.nextElementSibling;
if (panel.style.maxHeight){
panel.style.maxHeight = null;
} else {
panel.style.maxHeight = panel.scrollHeight + "px";
}
});
}
</script>
</body>
</html>