-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwork.html
More file actions
54 lines (51 loc) · 2.53 KB
/
work.html
File metadata and controls
54 lines (51 loc) · 2.53 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="description" content="A page about Reid Maury's work experience" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CSC324 Overview</title>
<link href="css/styles.css" rel="stylesheet" />
</head>
<body>
<div class="wrapper">
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="work.html">Work Experience</a></li>
</ul>
</nav>
</header>
<main>
<h1>Work Experience</h1>
<p class="work-exp-p">This page lists some of the work experience I have had over the past couple of years.</p>
<section>
<h2>Work Experience List</h2>
<div class="work-experience-list">
<ul>
<li>Landscap/Maintenance Worker</li>
<li>Undersea Technology Assistant</li>
<li>Attorney Assistant</li>
</ul>
</div>
</section>
<section>
<h2>Work Experience Descriptions</h2>
<div class="work-experience-description">
<h3>Landscap/Maintenance Worker:</h3>
<p>Worked for a landscaping and maintenance company during the summer months. Cared for properties by mulching, weeding, and trimming bushes. I worked this job from June 2023 to May 2025.</p>
<h3>Undersea Technology Assistant:</h3>
<p>Worked part-time for three weeks alongside NUWC Division Newport scientists and engineers. Developed small submersible vehicles and conducted underwater tests. I worked this job during July of 2021.</p>
<h3>Attorney Assistant:</h3>
<p>Worked as an assistant to a local attorney, helping with sorting, documenting, and boxing old files pertaining to clients. I worked this job from June 2024 to May 2025.</p>
</div>
</section>
</main>
<footer>
<p>©2026 Reid Maury</p>
</footer>
</div>
</body>
</html>