-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommunity.html
executable file
·135 lines (134 loc) · 5.26 KB
/
community.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="color-scheme" content="light dark" />
<link rel="stylesheet" href="main.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.green.min.css"
/>
<link rel="shortcut icon" type="image/jpg" href="favicon.jpg" />
<title>Team Green Menace</title>
</head>
<body>
<div id="fancy-background"></div>
<nav>
<ul>
<li>
<a href="/#home" title="Fear The Green">Green Menace</a>
</li>
<li>
<a href="./members.html">Team Members</a>
</li>
<li>
<a href="./about.html">About</a>
</li>
</ul>
<ul>
<li>
<a href="./un-goals.html">UN Goals</a>
</li>
<li>
<a href="./community.html">Connection to Community</a>
</li>
<li>
<a href="./fundraisers.html">Fundraisers</a>
</li>
<li>
<a href="./contact.html">Contact</a>
</li>
<li>
<a href="./credits.html">Credits</a>
</li>
<li>
<a
href="https://github.com/acuccoder/ftc-greenmenace-website"
><i class="fa-brands fa-github"></i
></a>
</li>
</ul>
</nav>
<main class="container">
<h1 id="typed-title"></h1>
<p>
We have initiated a club in our school community to promote
future engagement in the technological industry. To keep this
excitement of technology alive and to create additional
enthusiasm for this industry, we have started a coding club. In
our coding club, we cover the basics of coding and go all the
way to web development. We have three categories: beginner,
intermediate and advanced. We hope to help our club members
achieve the best of their abilities and help them learn coding
in an interesting way. Over 40 students have decided to join our
coding club to enrich their knowledge of coding.
</p>
<p>
Later in the
year, we hope to start a robotics club. Our robotics club will
integrate the skills and basic interpretation of coding into
mechanical terms. This will help the students in our school
deliver what they can imagine through the notion of technology.
</p>
<p> We strongly believe that technology is the foundation of the
future, and we’ve come together to provide our school with these
clubs to help them greet the future with some understanding of
technology.</p>
</main>
</body>
<script src="https://unpkg.com/[email protected]/dist/typed.umd.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r134/three.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
<script>
const typed = new Typed("#typed-title", {
strings: ["Our Connection to the Community"],
typeSpeed: 50,
cursorChar: "_",
});
/* Just in case a toggle is added later,
I have stored the darkmode value in a variable. */
const prefersDark =
window.matchMedia &&
window.matchMedia("(prefers-color-scheme: dark)").matches;
if (prefersDark) {
// VANTA.JS Imports
VANTA.NET({
el: "#fancy-background",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.0,
minWidth: 200.0,
scale: 1.0,
scaleMobile: 1.0,
color: 0x841b,
backgroundColor: 0x15173c,
points: 8.0,
maxDistance: 22.0,
});
} else {
VANTA.NET({
el: "#fancy-background",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.0,
minWidth: 200.0,
scale: 1.0,
scaleMobile: 1.0,
color: 0xffffff,
backgroundColor: 0x9eff9e,
points: 8.0,
maxDistance: 22.0,
});
}
</script>
</html>