-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (89 loc) · 4.52 KB
/
index.html
File metadata and controls
100 lines (89 loc) · 4.52 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="koalafied.css">
<title>Team Koalafied - FRC #6996</title>
</head>
<body>
<div id = "header">
<img class="logo" src="images/Rectangular%20Logo.png" height=75px>
<nav>
<!-- Menu List -->
<ul class="menu">
<li>
<a href = "index.html">
<!-- The dropdown container -->
<div class = "dropdown">
<!-- The button -->
<button class="dropbtn">Home</button>
</div>
</a>
</li>
<li>
<div class="dropdown">
<button class="dropbtn">About</button>
<!-- Content of the dropdown -->
<div class="dropdown-content">
<a href="our-journey.html">Our Journey</a>
<a href="about-frc.html">About the FRC</a>
</div>
</div>
</li>
<li>
<div class="dropdown">
<button class="dropbtn">Sponsors</button>
<!-- Content of the dropdown -->
<div class="dropdown-content">
<a href="sponsors.html">Sponsors</a>
<a href="friends-banner.html">Friends of Koalafied</a>
<a href="how-to-sponsor.html">How to Sponsor</a>
</div>
</div>
</li>
<li>
<div class="dropdown">
<button class="dropbtn">News</button>
<!-- Content of the dropdown -->
<div class="dropdown-content">
<a href="team-news.html">Team News</a>
<a href="weekly-journal.html">Weekly Journal</a>
</div>
</div>
</li>
</ul>
</nav>
</div>
<!-- title for each page, won't go inside the menu div, keep underneath -->
<div class = "page-title">
<h1 class = "title">Team Koalafied</h1>
</div>
<br>
<div class = "info">
<div class = "info-border">
<h1 class = "info">Who we are</h1>
<img class = "right-inline" src = "images/Koalafied.jpg" width = 40%>
<p class = "info">We are Team #6996 - Koalafied, a rookie FIRST Robotics Competition team based at Pembroke School. FIRST stands for "For Inspiration and Recognition of Science and Technology". Our team is made up of students from Pembroke School, with ages ranging from 12 to 18 years old.
<br><br>
Although our team is new to the competition, we have two members with prior experience in the FRC. A few team members also have some basic background knowledge in programming. Our team demonstrates a wide range of ethnic backgrounds and gender diversity, which leads to many different perspectives and ideas.
<br><br>
Our purpose in creating a robotics team is, first and foremost, to enjoy doing something that interests us. All members of the team are passionate and enthusiastic towards STEM (science, technology, engineering, and maths). We love learning and we believe that participating in the FRC is a fantastic method of learning skills in STEM subjects.
<br><br>
By participating in the program, our members receive much more than knowledge in robotics. They are able to get a real experience in areas of STEM, make many new friends, and gain valuable skills that are likely to be taken with them for the rest of their lives.</p>
</div>
</div>
<br>
<div class = img-full-width>
<div class = "info-border">
<img class = "full-width" src = "images/team.jpg">
<p class = "caption"><i>Team Koalafied in Sydney for the 2018 Southern Cross Regionals</i></p>
</div>
</div>
<br>
<div class = "footer">
<div class = "img-full-width">
<h1 class = "info">Our Sponsors</h1>
<img class = "full-width" src = "images/sponsors/footer.png">
</div>
</div>
</body>
</html>