-
Notifications
You must be signed in to change notification settings - Fork 0
/
employment.html
89 lines (83 loc) · 4.45 KB
/
employment.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
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Employment History - Joshc0des</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="site.css">
<link rel="shortcut icon" type="image/png" href="/favicon.png">
</head>
<body>
<nav class="navbar fixed-top navbar-expand-lg" style="background-color: #1c2236;">
<div class="container">
<a class="navbar-brand" href="index.html">Joshc0des</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="projects.html">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="skills.html">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="employment.html">Employment History</a>
</li>
</ul>
</div>
</div>
</nav>
<hr>
<main class="container py-5">
<h1 class="text-center mb-5">Employment History</h1>
<ul class="list-group">
<li class="list-group-item">
<h5 class="mb-0">IT Intern</h5>
<p class="text-muted">Love's Travel Stops & Country Stores - OKC, OK</p>
<p class="dark-no-indent">May 2022 - Present</p>
<p class="dark">As an IT intern at Love's, I have had the opportunity to work on
a variety of projects and gain hands-on experience with various technologies.
My responsibilities include discovering new and innovative ways to expedite workflow for
others, building solutions that make processes more efficient, maintaining past projects,
communicating to coworkers about the functionality and use cases of my projects, and working
collaboratively with others to connect various data sources with my applications.
</p>
</li>
<hr>
<li class="list-group-item">
<h5 class="mb-0">Server's Assistant/Expeditor</h5>
<p class="text-muted">Ranch Steakhouse - Norman, OK</p>
<p class="dark-no-indent">June 2021 - September 2021</p>
<p class="dark">During my time at Ranch Steakhouse, I received a promotion from Server's
Assistant to Expeditor. As an Expeditor I approved kitchen orders and garnished them
before sending them off to be served to customers. I developed professional team
skills whilst working with up to 40 individual coworkers simultaneously. This
environment required me to work quickly and effectively in order to tend to the
team's needs.
</p>
</li>
<hr>
<li class="list-group-item">
<h5 class="mb-0">Carhop/Crew Member</h5>
<p class="text-muted">Sonic Drive-In - Norman, OK</p>
<p class="dark-no-indent">August 2018 - October 2018 & July 2019 - October 2019</p>
<p class="dark">As a carhop at Sonic, I learned many valuable lessons in the areas of
resolving customer complaints, working quickly to satisfy waves of customers, and
working in a fast-paced environment.
</p>
</li>
</ul>
</main>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>