-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
145 lines (137 loc) · 5.21 KB
/
about.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>All About Eric Vandersloot</title>
<link rel="shortcut icon" href="./img/favicon-32x32.png" type="image/png" />
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Birthstone&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/style.production.css">
</head>
<body>
<header class="page-header">
<h1 class="name-display">Eric Vandersloot</h1>
<nav class="main-navigation page-header__item">
<ul role="menubar" class="navigation-list">
<li role="presentation">
<a href="index.html" role="menuitem" class="navigation-list__item">Home</a>
</li>
<li role="presentation">
<a href="about.html" role="menuitem" class="navigation-list__item--active">About</a>
</li>
<li role="presentation">
<a href="work.html" role="menuitem" class="navigation-list__item">My Work</a>
</li>
<li role="presentation">
<a href="mailto:edvandersloot@gmail.com" class="navigation-list__item">Contact Me</a>
</li>
<li role="presentation">
<a href="files/Resume.pdf" role="menuitem" class="navigation-list__item" download>Resume/CV</a>
</li>
</ul>
</nav>
</header>
<div class="about">
<h1 class="about__me">About</h1>
<h2>My name is Eric Vandersloot. I am a <span>web</span> developer from Texas, and I recently
attended CareerFoundry's Full-Stack Web Developer course with a goal of changing careers. I strive
to continually learn new skills and apply them where needed. With a background in Law Enforcement and
Telecommunications, I have a diverse skillset. Through my professional experience I have gained over 20 years
of customer service, an understanding of technology, and I understand the importance of a collaborative team
environment. In my previous industries, attention to detail was very important. Not unlike web development,
investigations could be tedious. Piecing together evidence to render a solution involved concentration and patience,
something I know is important to the final outcome. I chose to become a web developer because it is a growing
industry, and the skills I have developed through my professional experience will translate well into my new career.
I value Leadership, Integrity, Service, and Teamwork.
</h2>
</div> <br>
<div class="my-code">
<a href="https://github.com/evandersloot" target="_blank">See my code on Github</a>
</div>
<section class="web-skills">
<h1>Web Development Skills</h1>
<div class="skillset">
<div class="skills">
<h3><span>+</span> HTML5</h3>
</div>
<div class="skills">
<h3><span>+</span> CSS</h3>
</div>
<div class="skills">
<h3><span>+</span> JavaScript</h3>
</div>
<div class="skills">
<h3><span>+</span> TypeScript</h3>
</div>
<div class="skills">
<h3><span>+</span> React</h3>
</div>
<div class="skills">
<h3><span>+</span> Angular</h3>
</div>
<div class="skills">
<h3><span>+</span> jQuery</h3>
</div>
<div class="skills">
<h3><span>+</span> Bootstrap</h3>
</div>
<div class="skills">
<h3><span>+</span> Node.js</h3>
</div>
<div class="skills">
<h3><span>+</span> Express</h3>
</div>
<div class="skills">
<h3><span>+</span> MongoDB</h3>
</div>
<div class="skills">
<h3><span>+</span> PostgreSQL</h3>
</div>
<div class="skills">
<h3><span>+</span> AWS Lambda</h3>
</div>
<div class="skills">
<h3><span>+</span> Heroku</h3>
</div>
<div class="skills">
<h3><span>+</span> Firebase</h3>
</div>
<div class="skills">
<h3><span>+</span> Github</h3>
</div>
<div class="skills">
<h3><span>+</span> Netlify</h3>
</div>
<div class="skills">
<h3><span>+</span> Rest api</h3>
</div>
<div class="skills">
<h3><span>+</span> TDD</h3>
</div>
<div class="skills">
<h3><span>+</span> BDD</h3>
</div>
<div class="skills">
<h3><span>+</span> CRUD</h3>
</div>
<div class="skills">
<h3><span>+</span> Agile methodology</h3>
</div>
</div>
</section>
<footer class="page-footer">
<h2>Find me on Social Media</h2>
<div class="social-media">
<a href="https://github.com/evandersloot" target="_blank"><img src="img/github_icon.svg" alt="github"></a>
<a href="https://www.linkedin.com/in/eric-vandersloot/" target="_blank"><img src="img/linkedin_icon.svg" alt="linkedin"></a>
<a href="https://twitter.com/EricSloot" target="_blank"><img src="img/twitter_icon.svg" alt="twitter"></a>
</div>
<div class="contact-me">
<a href="mailto:edvandersloot@gmail.com">Send me an Email!</a>
</div>
</footer>
</body>
</html>