-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservice_HTML.html
More file actions
95 lines (92 loc) · 3.18 KB
/
Copy pathservice_HTML.html
File metadata and controls
95 lines (92 loc) · 3.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>David Armijo - Service</title>
<script
src="https://kit.fontawesome.com/c2bdbf7f1e.js"
crossorigin="anonymous"
></script>
</head>
<body>
<nav class="fixed-top-bar">
<ul class="navbar">
<li class="nav-item">
<a class="nav-link" href="index_HTML.html">
<span>Home</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="portfolio_HTML.html">
<span>Projects</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="qualifications_HTML.html">
<span>Skills</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="service_HTML.html">
<span>Service</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="semiconductor-ai_HTML.html">
<span>Semiconductor + AI</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="javascript:;" onclick="" title="Change Theme">
<span><i class="fa fa-paint-brush" aria-hidden="true"></i></span>
</a>
</li>
</ul>
</nav>
<header class="page-title">
<h1>Volunteer/Service</h1>
</header>
<main class="service-page-container">
<article class="service-container">
<div class="service-image-section">
<!-- <img src="" alt="icon of a notebook and pencil" /> -->
<i class="fa fa-pencil-square-o" aria-hidden="true"></i>
</div>
<div class="service-text-section">
<h2>Notetaker (CSCE 313)</h2>
<h3>
Texas A&M University Student Services : August - December 2024
</h3>
<p>
Volunteered to become a notetaker for the people who have
learning-based accommodations and needed other forms of recorded
lecture content to learn from the class. I take pride in the level
of detail of notes because it not only demonstrates my understanding
of the material, but it also helps other people understand the
material in a clear and concise way while providing a high level of
visual detail.
</p>
</div>
</article>
<article class="service-container">
<div class="service-image-section">
<img
src="pictures/houston-food-bank-box-food.png"
alt="Icon of an apple (reminiscent of the Houston Food Bank Logo)"
/>
</div>
<div class="service-text-section">
<h2>Houston Food Bank Volunteer</h2>
<h3>Houston : August - December 2024</h3>
<p>
Collaborated with a team of Volunteers to organize food based on
their expirations, as well as food types. Additionally, I assisted
in giving out food during the pandemic to people in need of food.
</p>
</div>
</article>
</main>
<script src="functions.js"></script>
</body>
</html>