forked from WoodchipsFTC/WoodchipsFTC.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (42 loc) · 1.96 KB
/
index.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
<!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 onscroll = "stickyfunction">
<h1>WOODCHIPS</h1>
<ul>
<div id="navbar">
<li class="active" ><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>
</div>
</ul>
<div id="content">
<h2><div class = center>About Us</div></h2>
<h1><img src="logo.png" alt="Our logo" width="500"></h1>
<p> We are the Woodchips! This year will be our fifth season competing in FTC and we couldn't be more excited! Our team is mainly comprised of ambitious lower-classmen. We have multiple experienced FLL team members that share their knowledge with the rest of the group, but we also have many intelligent new members that bring innovative ideas to the team. Even though our team is relatively new, we have a lot of talent and hope to have a promising season. Thanks to our team coach, Ms. Kuiken, we hope to have a great season and to build a solid foundation for seasons to come.</p>
<h1>Where we are:</h1>
</div>
<!-- Embeded map -->
<div class="center">
<iframe width="600" height="450" frameborder="0" style="border:0" src="https://www.google.com/maps/embed/v1/place?q=place_id:ChIJvcC6OrfkwokRxGICac_DZDM&key=AIzaSyBpiRnWoEMKdpoxC83yxzSPgpGxmzoIztE" allowfullscreen></iframe>
</div>
<script>
var navbar = document.getElementById("navbar");
var sticky = navbar.offsetTop;
function stickyfunction() {
if (window.pageYOffset >= sticky)
navbar.classList.add("sticky")
} else {
navbar.classList.remove("sticky");
}
}
</script>
</body>
</html>