-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvolunteer.html
More file actions
55 lines (53 loc) · 3.03 KB
/
volunteer.html
File metadata and controls
55 lines (53 loc) · 3.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projects - Your Name</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<!-- Navbar -->
<nav>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="work.html">Work</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="volunteer.html">Volunteering</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<!-- Volunteer Section -->
<section id="volunteer">
<h2>Volunteering and Club Involvement</h2>
<ul>
<li>
<h3>Esports Club</h3>
<p>
At Esports club, I was elected as treasurer for the 2024-2025 school year. I showed interest in helping the club and the willingness to learn which got me elected.
Through this role, I've learned how to manage the finance of the club, spreadsheeting and making sure we have the funds to spend on what we need. I have also
learned various ways of fundraising, such as through sponsors. Our club received a sponsorship from Genshin Impact, a popular adventure game, and for one of our
deliverables, I did a cosplay of Zhongli from the game, which, along with the deliverables the rest of the board did, helped secure $750 in funding for our club.
I also learned how to request funding from the university to fund our activities by making pitches on forms I filled out, successfully requesting and getting over $2500
in funding approved for the club.
</p>
</li>
<li>
<h3>Alliance Christian Fellowship</h3>
<p>
Alliance Christian Fellowship, known as ACF, is a church fully run by students on campus. A local church provides a pastor for us but the students run the
activities and functions of the club. I was elected as part of their trustees, where I help with setup and teardown of weekly Sunday services at the HUB,
the most popular spot on campus. I assist in various ways such as setting up our sound and streaming equipment for YouTube and a live audience, attending
monthly meetings for the club, and serving through concession stands during football games, which is the alternative to offering and provides the club with
a lot of funding. This allows us to rent our room for Sunday service and do many events such as a semester retreat, providing fun night activities such as
pizza parties and bowling night.
</p>
</li>
</ul>
</section>
<footer>
<p>© <script>document.write(new Date().getFullYear());</script> Grant Allen. All rights reserved.</p>
</footer>
</body>
</html>