-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathforge.html
More file actions
152 lines (132 loc) · 4.12 KB
/
Copy pathforge.html
File metadata and controls
152 lines (132 loc) · 4.12 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
---
layout: default
title: About FORGE
logo: forge
---
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #2f2f2f;
color: #eee;
margin: 0;
padding: 0;
}
header {
background-color: #111;
color: white;
padding-bottom: 0.5rem;
}
.header-container {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem 2rem;
flex-wrap: wrap;
}
.banner {
font-family: 'Orbitron', sans-serif;
font-size: 2rem;
font-weight: bold;
color: #ff4a4a;
}
main {
max-width: 1000px;
margin: 2rem auto;
padding: 0 1rem;
}
h2 {
text-align: center;
margin-bottom: 1rem;
color: #ff4a4a;
font-family: 'Orbitron', sans-serif;
}
.about-section {
background: #1a1a1a;
padding: 2rem;
border-radius: 12px;
box-shadow: 0 0 15px rgba(255, 74, 74, 0.15);
}
.about-section p {
line-height: 1.7;
margin-bottom: 1.5rem;
font-size: 1.05rem;
}
.goals-list {
margin-left: 1rem;
padding-left: 1rem;
border-left: 3px solid #ff4a4a;
}
.video-section {
margin-top: 3rem;
text-align: center;
}
.video-section h2 {
margin-bottom: 1rem;
font-family: 'Orbitron', sans-serif;
color: #ff4a4a;
}
.video-section video {
max-height: 80vh;
border-radius: 10px;
box-shadow: 0 0 15px rgba(255, 74, 74, 0.25);
}
footer p {
margin: 0.5rem 0;
font-size: 0.9rem;
color: #bbb;
}
.forge-buttons {
margin-top: 1.5rem;
display: flex;
justify-content: center;
}
.forge-buttons a {
display: inline-block;
margin-right: 12px;
margin-top: 10px;
padding: 10px 18px;
background-color: #ff4a4a;
color: #fff;
border-radius: 6px;
text-decoration: none;
font-weight: bold;
transition: 0.2s ease;
box-shadow: 0 0 10px rgba(255, 74, 74, 0.3);
}
.forge-buttons a:hover {
background-color: #cc0000;
box-shadow: 0 0 15px rgba(255, 74, 74, 0.6);
}
</style>
<main>
<h2>Who Are We?</h2>
<div class="about-section">
<p><strong>About Us:</strong> At FORGE Robotics, FRC Team 4421, our students are driven by the core values of FIRST
— innovation, teamwork, and a commitment to learning. Both on and off the field, we strive to grow as individuals
and as a team, empowering each other to think creatively, act with integrity, and lead with purpose.</p>
<p>Forge Robotics provides students with the opportunity to explore science, technology, engineering, and math
(STEM) in meaningful, hands-on ways throughout the year. Our team is made up of dedicated, skilled, and passionate
members who push themselves and one another to continually improve. We believe that true innovation comes from a
mindset of resilience — one that embraces challenges, learns from failure, and is always ready to try again.</p>
<p>Over the past few seasons, our hard work has paid off. In 2022 we were on the Winning Alliance at Canadian
Pacific Regional and qualified for World Championships. In 2023, we ranked within the top 22% of FRC teams
globally. By 2024, we climbed into the top 10% worldwide. That same year, we also rose from the top 22% of
Canadian teams to an impressive 11%, marking a significant leap in our national performance. In 2025 we again
qualified for World Championships through the new Regional Advancement System that rewarded our event performance
and awards.</p>
<p><strong>Beyond:</strong> Beyond robotics, we focus on teamwork, leadership, and giving back—mentoring younger
teams and helping grow Calgary’s STEM community. FORGE 4421 is proud to unite young innovators from across the
city, building not just robots, but future leaders.</p>
<div class="forge-buttons">
<a href="robots">View Our Robots</a>
<a href="legacy">View Our Legacy</a>
<a href="joinus">Join Us</a>
</div>
</div>
<section class="video-section">
<h2>THIS IS FORGE</h2>
<video controls>
<source src="redpandacompress_THIS IS FORGE.mp4" type="video/mp4">
</video>
</section>
</main>