-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (65 loc) · 3.65 KB
/
index.html
File metadata and controls
66 lines (65 loc) · 3.65 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
<!DOCTYPE html>
<html>
<head>
<link href="css/reset.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<header>
<h1>About Me...</h1>
<h2></h2>
</header>
<main>
<img src="img/erik_profile_pic_headshot.jpg" alt = "headshot of erik savage">
<section id = "bio">
<h3>A brief bio...</h3>
<p>My name is Erik Savage. I live in Seattle, Washington with my wife and two kids. I am an avid gamer, I really enjoy cooking for my family, making cocktails, growing peppers, dabbling in EDM music production.</p>
</section>
<section id = "edu">
<h3>Education history...</h3>
<ul>
<li>Redmond Highschool (Washington State), 2001 - 2004</li>
<li>Bellevue Community College, 2004 - 2005</li>
<li>Western Washington University, 2005 - 2009, B.S. Manufacturing Engineering Technology</li>
<li>Code Fellows Bootcamp, Presently Enrolled, Full Stack JavaScript Software Development</li>
</ul>
</section>
<section id = "jobexp">
<h3>Job experience...</h3>
<ul>
<li>From 2010 through 2017, I worked for PACCAR for both Kenworth Truck Company and Peterbilt Motors Company, designing and manufacturing components for the heavy duty class 8 trucks. During my time I worked on the sleeper structure, engine intake, and interiors where I designed sheet metal, extruded, cast, and injection molded components. In 2015 I transitioned to a manufacturing engineering position where I continued to support new product implementation (NPI) of cab interior products at our production facilities.</li>
<li>I left PACCAR in 2017 to work on a project for Valve at a local contract manufacturer as a Manufacturing Engineer. Here I supported the robotic assembly of the index VR base stations, as well as the manual assembly of the knuckles controller.</li>
<li>In January of 2019 I joined a start up in Seattle called Glowforge as a Sr. Manufacturing Engineer, where I supported the manufacture of Glowforge desktop laser cutters in Mexico, traveling 25% - 50% of my time there. </li>
</ul>
</section>
<section id = "goals">
<h3>Goals...</h3>
<p>Currently I am working towards a career in software development as a full stack JavaScript software developer. My goal is to successfully complete the program in March 2022, and gain full time employment at a company here in Seattle by the end of Q2, 2022.</p>
</section>
<section id = "topten">
<h3>My Top 10 Cocktail List...</h3>
<ol>
<li>Old Fashioned Burbon</li>
<li>Manhattan</li>
<li>Whiskey Smash</li>
<li>Gin and Tonic</li>
<li>Abbey</li>
<li>Tequila Thai-napple</li>
<li>Grape Basil Refresher</li>
<li>Carajillo 43 (shaken)</li>
<li>Painkiller</li>
<li>Green Spring 43</li>
</ol>
</section>
<section id = "test">
<h3>Test your reading!</h3>
<p>Answer 7 questions via prompts:</p>
<button id ="test">TEST</button>
<p id = "score"></p>
</section>
</main>
<footer>
</footer>
<script src="js/app.js"></script>
</body>
</html>