-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
310 lines (288 loc) · 11.3 KB
/
index.html
File metadata and controls
310 lines (288 loc) · 11.3 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
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
<!-- HELLO
-
DevFolio is a minimal, clean, lightweight and fully responsive template for Devlopers!
Created by Anil Seervi.
-
GitHub repo: https://github.com/AnilSeervi/DevFolio
README: https://github.com/AnilSeervi/DevFolio/blob/master/README.md
-
Have fun creating your portfolio on this template!!! -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link rel="preconnect" href="https://cdnjs.cloudflare.com" />
<!-- Title: add your Portfolio websites's title here -->
<title>Portfolio| Karson Eilers</title>
<!-- Add some coding keywords below, Ex: (javascript, yourusername, etc) -->
<meta name="keywords" content="[username], [name], skill" />
<!-- Improve your SEO by adding a small descrption of you -->
<meta name="description" content="[Your name here] | Developer" />
<!-- Add a your png Logo to the assets folder and change the href attr accordingly -->
<link rel="icon" type="image/png" href="./assets/devfolio-logo.png" />
<!-- Add your primary-theme color for the value of content -->
<meta name="theme-color" content="#36d1dc" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<!-- Fill content with the URL of this portfolio you'll host -->
<meta property="og:url" content="https://devfolio.js.org/" />
<!-- Fill content with the title of your portfolio(Recommended to use what you put in <title> tag) -->
<meta property="og:title" content="[Your name here] | Developer" />
<!-- Give a short description that'll show up when you/someone shares your portfolio on different platform -->
<meta property="og:description" content="Made using DevFolio Template" />
<!-- Add a thumbnail image in assets folder and fill the content attr with URL to that thumbnail
so that a thumbnail image of your portfolio is shown while shared on other platform -->
<meta
property="og:image"
content="https://devfolio.js.org/assets/devfolio.png"
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<!-- Again fill content attr with the URL of this portfolio you'll host -->
<meta property="twitter:url" content="https://devfolio.js.org" />
<!-- Recommended to use the same text used within <title> element -->
<meta property="twitter:title" content="[Your name here] | Developer" />
<!-- short description that shows up while your portfolio is shared -->
<meta
property="twitter:description"
content="Made using DevFolio Template"
/>
<!-- Fill content with the URL to the thumbnail image that you'll put in the assets folder -->
<meta
property="twitter:image"
content="https://anilseervi.vercel.app/assets/devfolio.png"
/>
<!-- link tags -->
<link rel="preload" as="style" href="./css/main.css" />
<link rel="stylesheet" href="./css/main.css" />
<!-- FontAwesome Icons link -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<script defer src="./javascript/scrollreveal.min.js"></script>
<script
defer
type="text/javascript"
src="./javascript/scrollveal.js"
></script>
<!-- Remove Google Analytics once you have your portfolio website set-up -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-122228201-4"
></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag("js", new Date())
gtag("config", "UA-122228201-4")
</script>
<!-- End of Google Analytics -->
</head>
<body>
<!-- Hero Section -->
<div id="hero">
<section class="container">
<h1 class="hero-title">
Hi, my name is <span class="text-color-main name">Karson Eilers</span>
<br />
</h1>
<p class="hero-cta">
<a class="cta-btn cta-btn--hero" href="#about">Get in touch</a>
</p>
</section>
<a href="#about" class="scroll-down-link" aria-label="scroll-down">
<div class="scroll-down"></div
></a>
</div>
<!-- /END Hero Section -->
<!-- About Section -->
<section id="about">
<div class="container">
<h2 class="section-title">About Me</h2>
<div class="row about-wrapper">
<div class="about-wrapper__image">
<img
class="img-fluid"
src="./assets/kqe_img.jpg"
alt="Profile Image"
width="450"
height="350"
/>
</div>
<div class="about-wrapper__info">
<p class="about-wrapper__info-text">
I am a student in the M.S. in Business Analytics Program at the University of Utah David Eccles School of Business
</p>
<p class="about-wrapper__info-text">
I have more than 7 years of experience working in both quantitative and qualitative policy analysis.
My technical skills include R, Python, and SQL.
</p>
<span class="about-wrapper__cta">
<a href="./assets/Karson_eilers_MSBA_Resume_2023.pdf" class="cta-btn cta-btn--resume">View Resume</a>
</span>
</div>
</div>
</div>
</section>
<!-- /END About Section -->
<!--Projects Section-->
<section id="projects">
<div class="container">
<div class="project-wrapper">
<h2 class="section-title dark-blue-text">Projects</h2>
<!-- Each .row is a project -->
<article class="row">
<div class="project-wrapper__text">
<h3 class="project-wrapper__text-title">Capstone 3 - Forecasting Fuel & Product Sales</h3>
<p class="project-wrapper__text-info">
As part of my MS Business Analytics Capstone, I worked with a group of my fellow students to forecast fuel, diesel, food service and merchandise sales for Maverik Gas Stations
</p>
<div class="project-wrapper__text-btns">
<a
href="https://h52d0s-karson-eilers.shinyapps.io/mav_app_final/"
target="_blank"
rel="noopener noreferrer"
class="cta-btn cta-btn--hero cta-btn--projects"
>See Shiny App Demo</a
>
<a href="https://github.com/KarsonE/MSBA-Product-Forecasting" target="_blank" class="cta-btn text-color-main"
>Learn More</a
>
</div>
</div>
<div class="project-wrapper__image">
<a href="https://github.com/KarsonE/MSBA-Product-Forecasting" target="_blank" rel="noopener noreferrer">
<div class="thumbnail rounded">
<img
src="./assets/capstone3.png"
class="img-fluid"
alt="Project Image"
width="1366"
height="767"
/>
</div>
</a>
</div>
</article>
<!-- /END Project -->
<!-- Each .row is a project -->
<article class="row">
<div class="project-wrapper__text">
<h3 class="project-wrapper__text-title">Capstone 2 - Predicting Customer Default Risk</h3>
<p class="project-wrapper__text-info">
My second MS in Business Analytics Capstone involved working in a group of students to compete in the Home Credit Kaggle Competition using random forest and naive bayes models.
</p>
<div class="project-wrapper__text-btns">
<a href="https://github.com/KarsonE/Home-Credit-Default-Risk/" target="_blank" class="cta-btn text-color-main"
>Learn More</a
>
</div>
</div>
<div class="project-wrapper__image">
<a href="https://github.com/KarsonE/Home-Credit-Default-Risk/" target="_blank" rel="noopener noreferrer">
<div class="thumbnail rounded">
<img
src="./assets/Capstone2.png"
class="img-fluid"
alt="Project Image"
width="1366"
height="767"
/>
</div>
</a>
</div>
</article>
<!-- /END Project -->
</div>
</div>
</section>
<!-- End Projects Section -->
<!-- Contact Section -->
<section id="contact">
<div class="container">
<h2 class="section-title">Contact</h2>
<div class="contact-wrapper">
<p class="contact-wrapper__text">Contact me to learn more</p>
<a href="mailto:karson.eilers@outlook.com" class="cta-btn cta-btn--resume">Email Karson</a>
</div>
</div>
</section>
<!-- END Contact Section -->
<!-- Footer Section -->
<footer class="footer">
<div class="container">
<a href="#hero" class="back-to-top" aria-label="go back to top">
<i class="fa fa-angle-up fa-2x" aria-hidden="true"></i>
</a>
<div class="social-links">
<a
href="#!"
target="_blank"
rel="noopener noreferrer"
aria-label="twitter"
>
<i class="fa-brands fa-twitter"></i>
</a>
<a
href="#!"
target="_blank"
rel="noopener noreferrer"
aria-label="instagram"
>
<i class="fa-brands fa-instagram"></i>
</a>
<a
href="#!"
target="_blank"
rel="noopener noreferrer"
aria-label="codepen"
>
<i class="fa-brands fa-codepen"></i>
</a>
<a
href="#!"
target="_blank"
rel="noopener noreferrer"
aria-label="linkedin"
>
<i class="fa-brands fa-linkedin"></i>
</a>
<a
href="https://www.linkedin.com/in/karson-eilers/"
target="_blank"
rel="noopener noreferrer"
aria-label="github"
>
<i class="fa-brands fa-github"></i>
</a>
</div>
<hr />
<p class="footer__text">
© <span id="year"></span> - Template by
<a
href="https://github.com/AnilSeervi"
target="_blank"
rel="noopener noreferrer"
>Anil Seervi</a
>. <br />Made with ♥
</p>
</div>
</footer>
<!-- END Footer Section -->
<script>
document.getElementById("year").textContent = new Date().getFullYear()
</script>
<script src="./javascript/vanilla-tilt.min.js"></script>
<script type="text/javascript" src="./javascript/valtilt.js"></script>
</body>
</html>