-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperience.html
More file actions
73 lines (73 loc) · 4.35 KB
/
Copy pathexperience.html
File metadata and controls
73 lines (73 loc) · 4.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Experience</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css">
</head>
<body>
<nav class="navbar navbar-expand-lg bg-body-tertiary" style="">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">Andrew Hinkson</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="education.html">Education</a>
</li>
<li class="nav-item">
<a class="nav-link" href="skills.html">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link" href="experience.html">Experience</a>
</li>
</ul>
<span class="navbar-text">
<button id="btnSwitch" type="button" class="btn btn-secondary">Toggle dark mode</button>
</span>
</div>
</div>
</nav>
<h1 class="text-center p-4 text-decoration-underline">Experience</h1>
<div class="h-100 d-flex align-items-center justify-content-center">
<ul class="pt-2 col-6 align-items-center p-4 border rounded-4 border-dark-subtle border-2">
<li class="fs-4">Produce Associate at Walmart (Jun 2019 - Oct 2021)</li>
<p class="w-100 pt-2 col-6 align-items-center">As a produce associate at Walmart, I worked with a team to
keep the sales floor stocked, keep track of inventory, unload new stock from delivery trucks, and help
customers to find what they are looking for, and make sure they had the best shopping experience possible.</p>
<li class="fs-4 ">Lot Porter at Titus-Will Toyota (Oct 2021 - Feb 2023, Jul 2023 - Present)</li>
<p class="w-100 pt-2 col-6 align-items-center">As a lot porter at Titus-Will Toyota, my team and I keep
things moving between the customers, mechanics, and the service advisors. When customers arrive, we check
them in for their service appointment, and listen to their concerns about their vehicle so we can direct
them to the correct department of service. After this, the service advisors write up the paperwork for the
vehicle, and we bring the vehicles to the appropriate mechanics. Once the mechanics have completed the
service on the cars, we bring the cars back around, wash them and vacuum them, and return them to the
customers. All of these tasks are happening simultaneously, which requires teamwork and coordination, along
with a certain level of multitasking, to keep things running smooth, and keep wait times as low as possible.</p>
</ul>
</div>
<div class="container">
<footer class="d-flex justify-content-between align-items-center my-2 py-2 border-top border-2 border-dark-subtle">
<p class="col-4 mb-0">Andrew Hinkson</p>
<ul class="nav col-4 justify-content-end">
<li class="nav-item">
<a class="nav-link text-muted" href="https://www.linkedin.com/in/andrewhinkson0342/">LinkedIn</a>
</li>
<li class="nav-item">
<a class="nav-link text-muted" href="https://github.com/ahinkson0342">GitHub</a>
</li>
</ul>
</footer>
</div>
<script src="script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity=
"sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
</body>
</html>