-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathabout.html
93 lines (82 loc) · 3.83 KB
/
about.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
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - Kelmscott Senior High School Robotics</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.15/dist/tailwind.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
}
.site-content {
flex: 1;
display: flex;
flex-direction: column;
}
.main-content {
flex: 1;
padding: 1rem;
}
footer {
background-color: #1f2937;
color: white;
text-align: center;
padding: 1rem;
}
.spacer {
flex: 1; /* This makes the spacer fill the remaining space */
}
</style>
</head>
<body class="bg-gray-200">
<div class="site-content">
<!-- Header Section -->
<header class="bg-gray-800 text-white p-4">
<div class="container mx-auto flex justify-between items-center">
<a href="https://kshs-robotics-club.github.io/">
<img src="logo.png" alt="KSHS Robotics" class="w-20 h-20">
</a>
<nav>
<a href="about.html" class="mx-2">About</a>
<a href="programs.html" class="mx-2">Programs</a>
<a href="contact.html" class="mx-2">Contact</a>
</nav>
</div>
</header>
<!-- Main Content -->
<main class="container mx-auto py-16 px-4">
<h1 class="text-4xl font-bold mb-8">About Us</h1>
<p class="mb-4">KSHS has a variety of robotics programs spanning across all grades. Along with robotics classes, we enter teams into a variety of <a href="https://www.firstinspires.org/" class="text-blue-500">FIRST</a> competitions such as FIRST Lego League and FIRST Robotics Competition.</p>
<section class="mb-8">
<h2 class="text-3xl font-semibold mb-4">FLL</h2>
<p>KSHS first competed in FLL in 2018 but after 2019 went dormant for multiple years. In 2023, KSHS entered a team for the first time in 4 years, comprised of a group of year 8s and 9s. This year we have started our preparation early and are looking to send multiple teams with students ranging from years 7 to 9.</p>
</section>
<section class="mb-8">
<h2 class="text-3xl font-semibold mb-4">FRC</h2>
<p>This year we also plan to send a team to <a href="https://waroboticsplayoffs.com/" class="text-blue-500">WARP</a> to compete in the 2024 FIRST Robotics competition game. The team will be comprised of older students, allowing FLL students to transition into it after graduating from the FLL program.</p>
</section>
</main>
<!-- Spacer -->
<div class="spacer"></div>
</div>
<!-- Footer Section -->
<footer>
<div class="container mx-auto">
<p>© 2024 Kelmscott Senior High School Robotics</p>
<div class="flex justify-center space-x-4 mt-2">
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
<a href="https://www.facebook.com/profile.php?id=61559577347658" class="text-gray-400 hover:text-white"><i class="fab fa-facebook"></i></a>
<a href="https://www.instagram.com/kshsrobotics/" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
<a href="https://www.youtube.com/@KSHSFRCroboticsteam" class="text-gray-400 hover:text-white"><i class="fab fa-youtube"></i></a>
</div>
</div>
</footer>
</body>
</html>