forked from cs4241-22a/a1-gettingstarted
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWork.html
More file actions
63 lines (63 loc) · 2.53 KB
/
Work.html
File metadata and controls
63 lines (63 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
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styling.css" />
<link rel="stylesheet" href="work.css" />
<title>Work</title>
<meta charset="utf-8" />
</head>
<body>
<header>
<h1 class="topTitle">Michael O'Connor</h1>
<ul class="navBar">
<li class="navLink"><a href="home.html">Home</a></li>
<li class="navLink"><a href="Education.html">Education</a></li>
<li class="navLink"><a href="Work.html">Work</a></li>
<li class="navLink"><a href="Other.html">Other</a></li>
</ul>
</header>
<main>
<h3>Work Experiences</h3>
<ul class="exp">
<li class="expListItem">
Arkansas Tech STEM Education Collaborative, Russellville, AR
<p>August 2019 - August 2020</p>
<ul class="exp">
<li class="expListItem">Traveling robotics instructor and referee</li>
<li class="expListItem">
Facilitating setup and management of educational STEM events across
Arkansas
</li>
<li class="expListItem">Managing and maintaining Vex Robotics inventory</li>
<li class="expListItem">
Coordinating with PK-12 educators on multidisciplinary
extracurricular STEM programming
</li>
<li class="expListItem">
Mentoring and officiating for middle and secondary level student
competitions under Vex Robotics guidelines
</li>
</ul>
</li>
<li class="expListItem">Worcester Polytechnic Institute</li>
<p>August 2021 - Present</p>
<ul class="exp">
<li class="expListItem">IT Specialist</li>
<li class="expListItem">Document user inquiries by creating tickets</li>
<li class="expListItem"> Troubleshoot, gather data, and provide users with solutions and workarounds </li>
<li class="expListItem">Respond to users and resolves inquiries appropriately.</li>
<li class="expListItem">Maintain a clean, positive, and functioning work environment</li>
<li class="expListItem">Review knowledge articles</li>
</ul>
<li class="expListItem">Department of Defense</li>
<p>May 2022 - August 2022</p>
<ul class="exp">
<li class="expListItem">Summer Intern</li>
<li class="expListItem">Worked closely with mid level and senior engineering and information technology subject matter experts. </li>
</ul>
</main>
<footer>
<h5>Michael O'Connor<br />CS 4241 Webware<br />Assignment 1</h5>
</footer>
</body>
</html>