-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathupdates.html
More file actions
138 lines (124 loc) · 6.51 KB
/
updates.html
File metadata and controls
138 lines (124 loc) · 6.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>South Brunswick Science Olympiad</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/js/all.min.js"></script>
<link rel="icon" type="image" href="assets/favicon.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="header-container">
<div class="logo">
<a href="index.html" class="title">SBSO</a>
</div>
<button class="mobile-menu-btn" id="mobileMenuBtn">
<i class="fas fa-bars"></i>
</button>
<nav class="nav" id="mainNav">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="updates.html">Updates</a>
<a href="resources.html">Resources</a>
<a href="contact.html">Contact</a>
<a href="leadership.html">Leadership</a>
</nav>
</div>
</header>
<section class="about-section">
<div class="container updates-container">
<div class="updates-content">
<h2>Updates</h2>
<p>Here are some of our recent competition results and other important announcements!</p>
<div class="update-entry">
<div class="update-date">
<span class="month">MAR</span>
<span class="day">11</span>
<span class="year">2025</span>
</div>
<div class="update-details">
<h3>States</h3>
<p>Our team competed at <a href="https://njscienceolympiad.org/tournaments/2025/state/index.html">States</a> placing 8th overall out of 27 teams! Special congratulations to our Astronomy (3rd), Dynamic Planet (5th), Helicopter (3rd), and Robot Tour (2nd) teams for placing!</p>
</div>
</div>
<div class="update-entry">
<div class="update-date">
<span class="month">FEB</span>
<span class="day">1</span>
<span class="year">2025</span>
</div>
<div class="update-details">
<h3>Princeton University Invitational</h3>
<p>Our team competed at the <a href="https://www.duosmium.org/results/2025-02-01_princeton_invitational_c/">Princeton University Invitational</a> competition placing 18th and 42nd overall out of 56 teams! Special congratulations to our Astronomy (3rd), Disease Detective (6th), Robot Tour (2nd) teams for placing!</p>
</div>
</div>
<div class="update-entry">
<div class="update-date">
<span class="month">JAN</span>
<span class="day">25</span>
<span class="year">2025</span>
</div>
<div class="update-details">
<h3>Columbia University Invitational</h3>
<p>Our team competed at the <a href="https://columbiascioly.com/results">Columbia University Invitational</a> competition placing 14th and 29th overall out of 60 teams! Special congratulations to our Astronomy (5th), Dynamic Planet (5th), Helicopter (2nd), Material Science (2nd), Optics (3rd), and Picture This (3rd) teams for placing!</p>
</div>
</div>
<div class="update-entry">
<div class="update-date">
<span class="month">JAN</span>
<span class="day">17</span>
<span class="year">2025</span>
</div>
<div class="update-details">
<h3>Regionals</h3>
<p>Our team competed at the <a href="https://njscienceolympiad.org/tournaments/2025/ucnj/">UCNJ Regional</a> competition placing 5th overall out of 23 teams! Special congratulations to our Air Trajectory (4th), Astronomy (6th), Dynamic Planet (6th), Entomology (5th), Helicopter (2nd), Microbe Mission (3rd), Optics (2nd), Tower (3rd), and Wind Power (6th) teams for placing!</p>
</div>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="footer-container">
<div class="footer-section">
<h3>Meetings</h3>
<p>Fridays After School</p>
<p>Room C205</p>
</div>
<div class="footer-section">
<h3>Follow Us</h3>
<a href="https://www.instagram.com/sbhsscioly/" target="_blank"><i class="fab fa-instagram"></i> Instagram</a>
<a href="https://www.youtube.com/@sbhsscioly" target="_blank"><i class="fab fa-youtube"></i> YouTube</a>
<div class="social-links">
<a href="https://www.instagram.com/sbhsscioly/" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="https://www.youtube.com/@sbhsscioly" target="_blank"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div class="footer-section">
<h3>Contact</h3>
<p>750 Ridge Road</p>
<p>Monmouth Junction, NJ</p>
<p>sbhsscioly@gmail.com</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 South Brunswick Science Olympiad.</p>
</div>
</footer>
<script>
// Mobile menu toggle
const mobileMenuBtn = document.getElementById('mobileMenuBtn');
const mainNav = document.getElementById('mainNav');
mobileMenuBtn.addEventListener('click', () => {
mainNav.classList.toggle('active');
mobileMenuBtn.innerHTML = mainNav.classList.contains('active')
? '<i class="fas fa-times"></i>'
: '<i class="fas fa-bars"></i>';
});
</script>
</body>
</html>