-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice.html
87 lines (87 loc) · 4.44 KB
/
service.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
<!DOCTYPE html>
<html>
<head>
<title>Service</title>
<link id="mainStyleSheet" rel="stylesheet" type="text/css" href="style1.css" />
</head>
<body>
<div class="header">
<img src="images/leaves1.png">
</div>
<nav>
<ul>
<div class="nav">
<li><a href="index.html">Home</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="qualifications.html">Qualifications</a></li>
<li><a href="service.html">Service</a></li>
<li><a href="ai.html">AI-Generated</a></li>
<div class="style button">
<li><a href=""><button onclick="toggleStyleSheet()" type="button">Toggle Style</button></a></li>
</div>
<script src="function.js"></script>
</div>
</ul>
</nav>
<div class="style-2-wrapper">
<div class="intro">
<div class="body-text">
<div id="first-box">
<h1>
My Service
</h1>
<p>
In the past I have volunteered at my local library,
<a href="https://countylibrary.org/malcolm">Malcolm Purvis Library</a>.
I typiclaly helped in preparing activities by setting up rooms
for events and cutting out and organizing paper for activities for children.
</p>
<p>
This past spring, I participated in the Big Event with my sorority.
</p>
</div>
</div>
</div>
<div class="box">
<div id="second-box">
<h1>
My Favorite Organization and Fundraising Event
</h1>
<p>
<a href="https://awesomesocks.club">Awesome Socks Club</a> is a subscription service
in which subscribers receive socks monthly. The after-tax profits from subscriptions
are donated to efforts to decrease maternal and child mortality in Sierra Leone. Awesome
Socks Club has donated over $900,000 so far.
</p>
<p>
<a href="https://gamesdonequick.com/">Games Done Quick</a> is a speedrun marathon that
holds speedrunning marathons throughout the year to raise money for various charities.
The two main events are Awesome Games Done Quick, usually held in early January, and
Summer Games Done Quick, which is typically held at some point between May and July.
Both events last for seven days and are streamed to a live audience. Awesome Games
Done Quick raises money for the
<a href="https://www.preventcancer.org/">Prevent Cancer Foundation</a>, and Summer
Games Done Quick raises money for
<a href="https://www.doctorswithoutborders.org/">Doctors Without Borders</a>. In total,
GDQ has raised over $46,000,000 for charity. Personally, I've watched GDQ's events since
January of 2019 when I was introduced to AGDQ by my older brother.
</p> <!-- source: https://gamesdonequick.com/tracker/ -->
</div>
</div>
</div>
<div class="footer">
<a id="LinkedIn" href="https://www.linkedin.com/in/kaitlyn-griffin-999b4128b/" target="_blank">
<img src="images/linkedin.png" alt="LinkedIn" />
</a>
<a id="GitHub" href="https://github.com/kaitlyngrif" target="_blank">
<img src="images/github.png" alt="GitHub Logo" />
</a>
<a id="YouTube" href="https://www.youtube.com/channel/UCiBrDJYBAdUKS9cdfab2o9w" target="_blank">
<img src="images/youtube.png" alt="YouTube Logo" />
</a>
<a id="Email" href="mailto:griffin.kaitlyn@tamu.edu" target="_blank">
<img src="images/email.png" alt="Email Logo" />
</a>
</div>
</body>
</html>