-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
435 lines (394 loc) · 18.2 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
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
<!-- HELLO
-
DevFolio is a minimal, clean, lightweight and fully responsive template for Devlopers!
Created by Anil Seervi.
-
GitHub repo: https://github.com/AnilSeervi/DevFolio
README: https://github.com/AnilSeervi/DevFolio/blob/master/README.md
-
Have fun creating your portfolio on this template!!! -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link rel="preconnect" href="https://cdnjs.cloudflare.com" />
<!-- Title: add your Portfolio websites's title here -->
<title>Rochester High | CS CLUB</title>
<!-- Add some coding keywords below, Ex: (javascript, yourusername, etc) -->
<meta name="keywords" content="CS Club, RHS, Rochester Hills, Rochester High School" />
<!-- Improve your SEO by adding a small descrption of you -->
<meta name="description" content="CS Club" />
<!-- Add a png Logo to the assets folder and change the href attr accordingly -->
<link rel="icon" type="image/png" href="./assets/logo.png" />
<!-- Add your primary-theme color for the value of content -->
<meta name="theme-color" content="#36d1dc" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<!-- Fill content with the URL of this portfolio you'll host -->
<meta property="og:url" content="https://rhs-csclub.vercel.app" />
<!-- Fill content with the title of your portfolio(Recommended to use what you put in <title> tag) -->
<meta property="og:title" content="RHS CS CLUB | Rochester High Schol" />
<!-- Give a short description that'll show up when you/someone shares your portfolio on different platform -->
<meta property="og:description" content="Home of CS Club Memebers" />
<!-- Add a thumbnail image in assets folder and fill the content attr with URL to that thumbnail -->
<meta property="og:image" content="assets/logo.png" />
<!-- so that a thumbnail image of your portfolio is shown while shared on other platform –>-->
<!-- Twitter -->
<meta property="twitter:card" content="./assets/Project_showcase/Thumbnail.png" />
<!-- Again fill content attr with the URL of this portfolio you'll host -->
<meta property="twitter:url" content="https://rhs-csclub.vercel.app" />
<!-- Recommended to use the same text used within <title> element -->
<meta property="twitter:title" content="RHS CS CLUB | Rochester High Schol" />
<!-- short description that shows up while your portfolio is shared -->
<!-- Fill content with the URL to the thumbnail image that you'll put in the assets folder -->
<style>
.horizontal-space {
margin-right: 10px; /* Adjust the value as needed */
}
.vertical-space {
margin-right: 10px; /* Adjust the value as needed */
}
.text-color-main {
color: #36d1dc; /* Adjust the value as needed */
}
/* if its a phone then i need all the childs to be in the next line*/
@media (max-width: 768px) {
.hero-cta {
display: flex;
flex-direction: column;
}
.cta-btn {
margin-bottom: 10px;
}
}
</style>
<!-- link tags -->
<link rel="preload" as="style" href="/css/main.css" />
<link rel="stylesheet" href="/css/main.css" />
<!-- FontAwesome Icons link -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<script defer src="./javascript/scrollreveal.min.js"></script>
<script
defer
type="text/javascript"
src="./javascript/scrollveal.js"
></script>
<!-- Remove Google Analytics once you have your portfolio website set-up -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-122228201-4"
>
</script>
<script src="https://server.fillout.com/embed/v1/"></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag("js", new Date())
gtag("config", "UA-122228201-4")
</script>
<!-- End of Google Analytics -->
</head>
<body>
<!-- Hero Section -->
<div id="hero">
<section class="container">
<h1 class="hero-title">
Hi, We are team <span class="text-color-main name">CS CLUB</span>
<br />
from <span class="text-color-main">Rochester High School</span>
</h1>
<p class="hero-cta">
<a class="cta-btn cta-btn--hero horizontal-space" href="#about">About Us</a>
<a class="cta-btn cta-btn--hero horizontal-space" href="#projects">Our Projects</a>
<a class="cta-btn cta-btn--hero horizontal-space" href="#contact">Contact Us</a>
</p>
<br>
<p class="hero-cta">
<a class="cta-btn cta-btn--hero horizontal-space" href="https://tce.me/iOUQ5B">Apply Now!!</a>
<a class="cta-btn cta-btn--hero horizontal-space" href="javascript:void(0);" onclick="openForm()">Interest Form</a>
<a class="cta-btn cta-btn--hero horizontal-space" href="/attendance.html">Attendance</a>
</p>
<br>
<p class="hero-cta">
<a class="cta-btn cta-btn--hero horizontal-space" href="https://discord.gg/8Z8Q6Z2">Discord</a>
<a class="cta-btn cta-btn--hero horizontal-space" id="test-me-btn">Test Me!</a> </p>
<div id="filloutForm" style="width:100%; height:500px; display:none;" data-fillout-id="2KZnnNpLfbus" data-fillout-embed-type="standard" data-fillout-inherit-parameters data-fillout-dynamic-resize></div>
<script src="https://server.fillout.com/embed/v1/"></script>
<script>
function openForm() {
var form = document.getElementById('filloutForm');
if (form.style.display === 'none') {
form.style.display = 'block';
form.style.position = 'fixed';
form.style.height = '100%';
form.style.width = '100%';
form.style.top = '50%';
form.style.left = '50%';
form.style.transform = 'translate(-50%, -50%)';
form.style.zIndex = '1000';
form.style.backgroundColor = 'black';
form.style.boxShadow = '0 4px 8px rgba(0, 0, 0, 0.1)';
form.style.padding = '20px';
} else {
form.style.display = 'none';
}
}
</script>
</section>
<a href="#about" class="scroll-down-link" aria-label="scroll-down">
<div class="scroll-down"></div>
</a>
</div>
<!-- /END Hero Section -->
<!-- About Section -->
<section id="about">
<div class="container">
<h2 class="section-title">About Us</h2>
<div class="row about-wrapper">
<div class="about-wrapper__image">
<img
class="img-fluid"
src="/assets/profile.png"
alt="Profile Image"
width="360"
height="360"
/>
</div>
<div class="about-wrapper__info">
<p class="about-wrapper__info-text">
The CS Club is a vibrant community for students passionate about computer science and technology. We focus on learning and applying coding skills through hands-on projects, workshops, and collaborations. Our club fosters a supportive environment where members can explore various programming languages, engage in exciting challenges, and work on real-world projects. Whether you're a beginner or an experienced coder, the CS Club offers opportunities to enhance your skills, connect with like-minded peers, and make a meaningful impact in the tech world. <p class="about-wrapper__info-text">
We meet every week in Room B123, with a special meeting at the end of the year. At the end-of-year meeting, members have the chance to showcase their work, whether it's games, apps, or other programming projects. After presenting their projects, members can engage in discussions, receive feedback, and explore new ideas for future development. It's a great opportunity to celebrate achievements and inspire one another.
</p>
<span class="about-wrapper__cta">
<a href="#" class="cta-btn cta-btn--resume">Our Members</a>
</span>
</div>
</div>
</div>
</section>
<!-- /END About Section -->
<!--Projects Section-->
<section id="projects">
<div class="container">
<div class="project-wrapper">
<h2 class="section-title dark-blue-text">Projects</h2>
<!-- Each .row is a project -->
<article class="row">
<div class="project-wrapper__text">
<h3 class="project-wrapper__text-title">FRC-JAVA GUIDE</h3>
<p class="project-wrapper__text-info">
A comprehensive guide to Java programming for FRC teams, including
tutorials, examples, and resources to help students learn Java and
develop their programming skills for robotics competitions.
</p>
<div class="project-wrapper__text-btns">
<a
href="https://programers-handbook.vercel.app/"
target="_blank"
rel="noopener noreferrer"
class="cta-btn cta-btn--hero cta-btn--projects"
>See Live</a
>
<a href="https://github.com/Rochester-CS-Club/Programers-Handbook" target="_blank" class="cta-btn text-color-main"
>Source Code</a
>
</div>
</div>
<div class="project-wrapper__image">
<a href="https://programers-handbook.vercel.app" target="_blank" rel="noopener noreferrer">
<div class="thumbnail rounded">
<img
src="./assets/Project_showcase/Programming_Handbook.png"
class="img-fluid"
alt="Project Image"
width="1366"
height="767"
/>
</div>
</a>
</div>
</article>
<!-- /END Project -->
</div>
</div>
</section>
<!-- End Projects Section -->
<section id="upcoming">
<div class="container">
<div class="project-wrapper">
<h2 class="section-title" style="color: white">UpComing-Projects</h2>
<!-- Each .row is a project -->
<article class="row">
<div class="project-wrapper__text">
<h3 class="project-wrapper__text-title">@rhsclubs Instagram Bot</h3>
<p class="project-wrapper__text-info">
An Instagram bot that automates the process of posting on the
@rhsclubs Instagram account. The bot is programmed to post
announcements, updates, from other RHS Clubs on a regular basis.
</p>
<div class="project-wrapper__text-btns">
<a
href="#"
target="_blank"
rel="noopener noreferrer"
class="cta-btn cta-btn--hero cta-btn--upcoming"
>See Live</a
>
<a href="#" target="_blank" class="cta-btn text-color-main"
>Source Code</a
>
</div>
</div>
<div class="project-wrapper__image">
<a href="#" target="_blank" rel="noopener noreferrer">
<div class="thumbnail rounded">
<img
src="./assets/project.png"
class="img-fluid"
alt="upcoming Image"
width="1366"
height="767"
/>
</div>
</a>
</div>
</article>
<!-- /END upcoming -->
<!-- Each .row is a upcoming -->
<article class="row">
<div class="project-wrapper__text">
<h3 class="project-wrapper__text-title">Falcon bot</h3>
<p class="project-wrapper__text-info">
A Discord bot that provides information about FEDS201 and RHS CS Club's events, meetings, and announcements. The bot is programmed to send notifications to the RHS CS Club Discord server.
</p>
<div class="project-wrapper__text-btns">
<a
href="#"
target="_blank"
rel="noopener noreferrer"
class="cta-btn cta-btn--hero cta-btn--upcoming"
>See Live</a
>
<a href="#" target="_blank" class="cta-btn text-color-main"
>Source Code</a
>
</div>
</div>
<div class="project-wrapper__image">
<a href="#" target="_blank" rel="noopener noreferrer">
<div class="thumbnail rounded">
<img
src="./assets/project.png"
class="img-fluid"
alt="upcoming Image"
width="1366"
height="767"
/>
</div>
</a>
</div>
</article>
<!-- /END upcoming -->
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact">
<div class="container">
<h2 class="section-title">Contact</h2>
<div class="contact-wrapper">
<p class="contact-wrapper__text">Mail Me!!</p>
<a href="#" id="contact-btn" class="cta-btn cta-btn--resume">Shoot a Mail</a></div>
</div>
</section>
<!-- END Contact Section -->
<!-- Footer Section -->
<footer class="footer">
<div class="container">
<a href="#hero" class="back-to-top" aria-label="go back to top">
<i class="fa fa-angle-up fa-2x" aria-hidden="true"></i>
</a>
<div class="social-links">
<a
href="https://x.com/RHSFalcons"
target="_blank"
rel="noopener noreferrer"
aria-label="twitter"
>
<i class="fa-brands fa-twitter"></i>
</a>
<a
href="https://www.instagram.com/rochesterhighschool/"
target="_blank"
rel="noopener noreferrer"
aria-label="instagram"
>
<i class="fa-brands fa-instagram"></i>
</a>
<a
href="https://www.linkedin.com/company/rochester-high-school-falcons/"
target="_blank"
rel="noopener noreferrer"
aria-label="linkedin"
>
<i class="fa-brands fa-linkedin"></i>
</a>
<a
href="https://github.com/Rochester-CS-Club"
target="_blank"
rel="noopener noreferrer"
aria-label="github"
>
<i class="fa-brands fa-github"></i>
</a>
</div>
<hr />
<p class="footer__text">
© <span id="year"></span><br />Made with ♥
</p>
</div>
</footer>
<script>
document.getElementById("year").textContent = new Date().getFullYear().toString();
document.addEventListener('DOMContentLoaded', function() {
document.getElementById('contact-btn').addEventListener('click', function(event) {
event.preventDefault();
window.location.href = 'mailto:raruls9099@rcs-k12.us';
});
});
document.addEventListener('DOMContentLoaded', function() {
var testMeBtn = document.getElementById('test-me-btn');
testMeBtn.addEventListener('click', function () {
fetch('javaSnippets.json')
.then(response => response.json())
.then(snippets => {
var randomSnippet = snippets[Math.floor(Math.random() * snippets.length)];
var snippetCode = randomSnippet.code;
var snippetTitle = randomSnippet.title;
var snippetIssue = randomSnippet.issue;
navigator.clipboard.writeText(snippetCode).then(function () {
alert(`Java snippet copied to clipboard!\nTitle: ${snippetTitle}\nIssue: ${snippetIssue}`);
}, function (err) {
console.error('Could not copy text: ', err);
});
})
.catch(error => console.error('Error fetching snippets:', error));
});
});
</script>
<script src="javascript/vanilla-tilt.min.js"></script>
<script type="text/javascript" src="./javascript/valtilt.js"></script>
</body>
</html>