-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
529 lines (495 loc) · 18.6 KB
/
index.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
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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
<!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" />
<!-- SEO -->
<title>🖥️ Andy's Portfolio</title>
<meta
name="description"
content="Portfolio for world-renowned software
engineer Andy"
/>
<meta name="author" content="Andy" />
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon" />
<!-- OG (Open Graph Data) -->
<meta property="og:title" content="Andy's Portfolio" />
<meta property="og:type" content="website" />
<meta
property="og:url"
content="https://ndk6879.github.io/portfolio/"
/>
<meta
property="og:image"
content="https://ndk6879.github.io/portfolio/images/og-v2.webp"
/>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap"
rel="stylesheet"
/>
<!-- Font Awesome -->
<script
src="https://kit.fontawesome.com/9eb162ac0d.js"
crossorigin="anonymous"
></script>
<!-- Typeit -->
<script src="https://unpkg.com/[email protected]/dist/index.umd.js"></script>
<!-- CSS -->
<link rel="stylesheet" href="css/style.css" />
<!-- Javascript -->
<script type="module" src="src/main.js" defer></script>
<script type="module" src="src/projects.js" defer></script>
<script type="module" src="src/active_menu.js" defer></script>
<script type="module" src="src/type.js" defer></script>
</head>
<body>
<!-- Header -->
<header class="header">
<div class="header__logo">
<h1 class="header__logo__title"><a href="#">🖥️ Andy</a></h1>
<!-- Resume Button -->
<div class="header__resume">
<a href="https://drive.google.com/file/d/1tEBIokBocqVEg4bpPVu4uYSBbfE1NQ8-/view?usp=drive_link" class="resume-btn" target="_blank">Resume</a>
</div>
</div>
<nav class="header__nav">
<ul class="header__menu">
<li><a class="header__menu__item active" href="#home">Home</a></li>
<li><a class="header__menu__item" href="#about">About</a></li>
<li><a class="header__menu__item" href="#skills">Skills</a></li>
<li><a class="header__menu__item" href="#work">My work</a></li>
<!-- <li>
<a class="header__menu__item" href="#testimonial">Testimonial</a>
</li> -->
<li><a class="header__menu__item" href="#contact">Contact</a></li>
</ul>
</nav>
<button class="header__toggle" aria-label="navigation menu toggle">
<i class="fa-solid fa-bars"></i>
</button>
</header>
<!-- Main -->
<main>
<!-- Home -->
<section id="home">
<div class="max-container home__container">
<img
class="home__avatar"
src="images/profile.png"
alt="Andy's profile"
/>
<div class = "home__test">
<h2 class="home__title" aria-label="Hello, I'm Andy">
Hello <br />I'm
<strong class="home__title--strong">Software Engineer</strong>, Andy
</h2>
<p class="home__description">
A software engineer in State College, Pennsylvania<br>
Scroll down to learn more about me 👋
</p>
<a class="home__contact" href="#contact">Contact Me</a>
</div>
</div>
</section>
<!-- About -->
<section id="about" class="section max-container">
<h2 class="title">About me</h2>
<p class="description">
Pursuing a Bachelor of Science in Computer Science at Penn State<br>
1.5 years of experience in Software Engineering and leading side projects.
<br>I create efficient, user-friendly products using modern technology.
<br>Committed to being a developer who optimizes, maintains, and builds scalable,
<br>high-performance solutions that drive innovation.
</p>
<ul class="majors">
<li class="major">
<i class="fa-brands fa-html5 major__icon"></i>
<p class="major__title">Languages</p>
<p>Python, Go, Java, JavaScript, C/C++</p>
</li>
<li class="major">
<i class="fa-solid fa-server major__icon"></i>
<p class="major__title">Framework & Libraries</p>
<p>React, Node.js, Express, jQuery, Django, OCR, Selenium</p>
</li>
<li class="major">
<i class="fa-solid fa-mobile major__icon"></i>
<p class="major__title">Database & DevOps</p>
<p>MySQL, PostgreSQL, MongoDB, Git, AWS, Power BI</p>
</li>
</ul>
<ul class="jobs">
<li class="job">
<img src="images/jobs/3ds.png" alt="3ds logo" />
<div>
<p class="job__name">Dassault Systèmes as Software Engineer Intern</p>
<p class="job__period">2023 July - 2024 July</p><br>
<!-- <ul>What I did in Dassault Systèmes.</ul>
<ul>What I did in Dassault Systèmes.</ul>
<ul>What I did in Dassault Systèmes.</ul>
<ul>What I did in Dassault Systèmes.</ul>
<ul>What I did in Dassault Systèmes.</ul>
<ul>What I did in Dassault Systèmes.</ul>
<ul>What I did in Dassault Systèmes.</ul> -->
</p>
</div>
</li>
<li class="job">
<img src="images/jobs/ahnlab.jpeg" alt="ahnlab logo" />
<div>
<p class="job__name">Ahnlab Inc. as Software Engineer Intern</p>
<p class="job__period">2022 June - 2022 December</p>
<!-- <ul>What I did in Ahnlab.</ul>
<ul>What I did in Ahnlab.</ul>
<ul>What I did in Ahnlab.</ul>
<ul>What I did in Ahnlab.</ul>
<ul>What I did in Ahnlab.</ul>
<ul>What I did in Ahnlab.</ul> -->
</div>
</li>
</ul>
</section>
<!-- Skills -->
<section id="skills" class="section">
<div class="max-container">
<h2 class="title">My Skills</h2>
<p class="description">Skills & Attributes</p>
<p>
<!-- 1.5 years of industry experience in design, implementation, testing, and API documentation.<br>
Specialized in crafting efficient, user-friendly products with modern technology.<br>
Committed to developing scalable, high-performance solutions that drive innovation. -->
</p>
<div class="skills">
<section class="skills__coding">
<h3 class="skills__title">Coding Skills</h3>
<ul>
<li class="bar">
<div class="bar__metadata">
<span>Python</span><span>98%</span>
</div>
<div class="bar__bg">
<div class="bar__value" style="width: 98%"></div>
</div>
</li>
<li class="bar">
<div class="bar__metadata">
<span>Java</span><span>95%</span>
</div>
<div class="bar__bg">
<div class="bar__value" style="width: 95%"></div>
</div>
</li>
<li class="bar">
<div class="bar__metadata">
<span>SQL & NoSQL</span><span>95%</span>
</div>
<div class="bar__bg">
<div class="bar__value" style="width: 95%"></div>
</div>
</li>
<li class="bar">
<div class="bar__metadata">
<span>Javascript</span><span>90%</span>
</div>
<div class="bar__bg">
<div class="bar__value" style="width: 90%"></div>
</div>
</li>
<li class="bar">
<div class="bar__metadata">
<span>React</span><span>90%</span>
</div>
<div class="bar__bg">
<div class="bar__value" style="width: 90%"></div>
</div>
</li>
<li class="bar">
<div class="bar__metadata">
<span>Nodejs</span><span>90%</span>
</div>
<div class="bar__bg">
<div class="bar__value" style="width: 90%"></div>
</div>
</li>
<li class="bar">
<div class="bar__metadata">
<span>Express</span><span>90%</span>
</div>
<div class="bar__bg">
<div class="bar__value" style="width: 90%"></div>
</div>
</li>
</ul>
</section>
<section class="skills__tools">
<h3 class="skills__title">Tools</h3>
<ul>
<br>
<br>
<li>Visual Studio Code</li>
<li>Jupyter Notebook</li>
<li>Notion</li>
<li>Jira</li>
<li>ChatGPT</li>
</ul>
</section>
<section class="skills__etc">
<h3 class="skills__title">Etc</h3>
<ul>
<br>
<li>Slack</li>
<li>Zoom/Google Meet</li>
<li>Git</li>
</ul>
</section>
</div>
</div>
</section>
<!-- Work -->
<section id="work" class="section">
<div class="max-container">
<h2 class="title">My work</h2>
<p class="description">Projects</p>
<ul class="categories">
<li>
<button class="category category--selected" data-category="all">
All <span class="category__count">8</span>
</button>
</li>
<li>
<button class="category" data-category="front-end">
Front-end <span class="category__count">4</span>
</button>
</li>
<li>
<button class="category" data-category="back-end">
Back-end <span class="category__count">4</span>
</button>
</li>
<!-- <li>
<button class="category" data-category="mobile">
Mobile <span class="category__count">2</span>
</button>
</li> -->
</ul>
<ul class="projects">
<li class="project" data-type="front-end">
<!-- <a href="#" target="_blank"> -->
<img
src="images/projects/project1.webp"
alt="project1"
class="project__img"
/>
<div class="project__metadata">
<h3 class="project__title">Project #1</h3>
<p>Full-Stack Application with Node.js & MongoDB</p>
</div>
</a>
</li>
<li class="project" data-type="front-end">
<!-- <a href="#" target="_blank"> -->
<img
src="images/projects/project2.webp"
alt="project2"
class="project__img"
/>
<div class="project__metadata">
<h3 class="project__title">Project #2</h3>
<p>E-Commerce Platform using React & JavaScript </p>
</div>
</a>
</li>
<li class="project" data-type="back-end">
<!-- <a href="#" target="_blank"> -->
<img
src="images/projects/project3.webp"
alt="project3"
class="project__img"
/>
<div class="project__metadata">
<h3 class="project__title">Project #3</h3>
<p>API Integration with Node.js & Express
</p>
</div>
</a>
</li>
<li class="project" data-type="back-end">
<!-- <a href="#" target="_blank"> -->
<img
src="images/projects/project4.webp"
alt="project4"
class="project__img"
/>
<div class="project__metadata">
<h3 class="project__title">Project #4</h3>
<p>Cloud-Hosted Application with AWS & Node.js </p>
</div>
</a>
</li>
<li class="project" data-type="front-end">
<!-- <a href="#" target="_blank"> -->
<img
src="images/projects/project5.webp"
alt="project5"
class="project__img"
/>
<div class="project__metadata">
<h3 class="project__title">Project #5</h3>
<p>Real-Time Data Dashboard with JavaScript & Power BI
</p>
</div>
</a>
</li>
<li class="project" data-type="back-end">
<!-- <a href="#" target="_blank"> -->
<img
src="images/projects/project6.webp"
alt="project6"
class="project__img"
/>
<div class="project__metadata">
<h3 class="project__title">Project #6</h3>
<p>Database-Driven Web App with MySQL & Node.js
</p>
</div>
</a>
</li>
<li class="project" data-type="back-end">
<!-- <a href="#" target="_blank"> -->
<img
src="images/projects/project7.webp"
alt="project7"
class="project__img"
/>
<div class="project__metadata">
<h3 class="project__title">Project #7</h3>
<p>Dynamic UI Development with React & JavaScript
</p>
</div>
</a>
</li>
<li class="project" data-type="front-end">
<!-- <a href="#" target="_blank"> -->
<img
src="images/projects/project8.webp"
alt="project8"
class="project__img"
/>
<div class="project__metadata">
<h3 class="project__title">Project #8</h3>
<p>Responsive Web Design with HTML & CSS
</p>
</div>
</a>
</li>
</ul>
</div>
</section>
<!-- Testimonials -->
<!-- <section id="testimonial" class="section max-container">
<h2 class="title">Testimonial</h2>
<p class="description">See what they say about me</p>
<ul class="testimonials">
<li class="testimonial">
<img
src="images/testimonials/people1.webp"
alt="people1"
class="testimonial__img"
/>
<div class="testimonial__bubble">
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Rem ad
iusto, ea alias, at sit libero laboriosam eaque eum, reiciendis
obcaecati vitae non reprehenderit beatae officiis. Dolore
corporis eveniet labore.
</p>
<p>
<a href="#" class="testimonial__bubble__name">James Kim</a>
/Google
</p>
</div>
</li>
<li class="testimonial">
<img
src="images/testimonials/people2.webp"
alt="people2"
class="testimonial__img"
/>
<div class="testimonial__bubble">
<p>
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Iure
adipisci quibusdam perspiciatis neque consequuntur nostrum
quisquam dolore consequatur voluptatum animi laborum, sequi
ipsum rerum voluptatibus sit ab similique quos velit?
</p>
<p>
<a href="#" class="testimonial__bubble__name">Anna Jin</a>
/Samsung
</p>
</div>
</li>
<li class="testimonial">
<img
src="images/testimonials/people3.webp"
alt="people3"
class="testimonial__img"
/>
<div class="testimonial__bubble">
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Perferendis, mollitia. Fugiat recusandae unde ducimus harum
voluptas earum reiciendis expedita inventore quas ab eum
dignissimos, maiores deleniti officiis qui, repudiandae
voluptatibus?
</p>
<p>
<a href="#" class="testimonial__bubble__name">Anna Jin</a>
/Samsung
</p>
</div>
</li>
</ul>
</section> -->
<!-- Arrow up -->
<aside>
<a class="arrow-up" href="#home" title="back to top">
<i class="fa-solid fa-arrow-up"></i>
</a>
</aside>
</main>
<!-- Footer -->
<footer id="contact" class="section">
<div class="max-container">
<h2 class="title">Let's talk</h2>
<p class="description">[email protected]</p>
<ul class="contact__links">
<li>
<a
class="contact__link"
href="https://github.com/ndk6879"
target="_blank"
title="my github link"
>
<i class="fa-brands fa-github"></i>
</a>
</li>
<li>
<a
class="contact__link"
href="https://www.linkedin.com/in/donggyun-nam/"
target="_blank"
title="my linkedin link"
>
<i class="fa-brands fa-linkedin"></i>
</a>
</li>
</ul>
<p>Andy Nam 2025 All rights reserved</p>
</div>
</footer>
</body>
</html>