-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
646 lines (606 loc) · 34.4 KB
/
index.html
File metadata and controls
646 lines (606 loc) · 34.4 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
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
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content />
<meta name="author" content />
<title>Eric Huang</title>
<link rel="icon" type="image/x-icon" href="assets/img/favicon.ico" />
<!-- Font Awesome icons (free version)-->
<script src="https://use.fontawesome.com/releases/v6.3.0/js/all.js" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="scripts.js"></script>
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
<link href="css/imageborder.css" rel="stylesheet" />
<link href="css/customstyles.css" rel="stylesheet" />
</head>
<body id="page-top">
<!-- Navigation-->
<nav class="navbar navbar-expand-lg navbar-dark bg-primary fixed-top" id="sideNav">
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<span class="d-none d-lg-block"><img class="img-fluid img-profile rounded-circle mx-auto mb-2"
src="assets/img/profile.jpg" alt="..." /></span>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarResponsive"
aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation"><span
class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#banner">About Me</a>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#contact">Contact Me</a>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#projects">Projects</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#resume">Resume</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#interests">Interests</a></li>
</ul>
</div>
</nav>
<!-- Page Content-->
<div class="container-fluid p-0">
<img src="assets/img/purplebanner.jpg" id="banner">
<!-- About-->
<section class="resume-section" id="about">
<div class="resume-section-content" id="erichuang">
<h2 class="mb-4">
Hello! I'm Eric Huang.
</h2>
<p class="lead mb-3">I'm a recent graduate of NJIT
with a B.S. in Business & Information Systems. I aspire to
help improve the way businesses and customers
interact with technology in their daily life.</p>
<h4 class="mb-4">What am I up to now?</h4>
<ul>
<li>I'm interested in the intersection of new
technology, data, users, and businesses, and how
all
of these can drive us towards more human
centered technology!</li>
<li>I'm learning how businesses and clients interact
with digital products and services to
design appealing products and apps, and how
machine learning can be used to make processes
more
efficient and intuitive.</li>
<li>As a coder and designer, I'm actively creating
and designing personal projects.</li>
<li>I was an active member of NJIT's Student Senate
as the Vice President, chairing meetings and
meeting with administrators regularly to try to
improve quality of life for students, and
experiencing how large organizations are managed
internally.</li>
</ul>
<h4 class="mb-4" id="contact">
Contact Me
</h4>
<div class="social-icons">
<div class="social-link">
<div><a class="social-icon" href="https://www.linkedin.com/in/ericcchuang/"><i
class="fab fa-linkedin-in"></i></a></div>
<div>
<p><b><a href="https://www.linkedin.com/in/ericcchuang/">LinkedIn</a></b></p>
</div>
</div>
<div class="social-link">
<div><a class="social-icon" href="https://github.com/ericcchuang"><i
class="fab fa-github"></i></a></div>
<div>
<p><b><a href="https://github.com/ericcchuang">GitHub</a></b></p>
</div>
</div>
<div class="social-link">
<div><a class="social-icon" href="mailto:erichuang135@gmail.com"><i
class="fas fa-mail-bulk"></i></a></div>
<div>
<p><b><a href="mailto:erichuang135@gmail.com">Email</a></b></p>
</div>
</div>
</div>
You can also email me at <b><a href="mailto:erichuang135@gmail.com">erichuang135@gmail.com</a></b>.
</div>
</section>
<hr class="m-0" />
<!-- Projects-->
<section class="resume-section" id="projects">
<div class="resume-section-content">
<h2 class="mb-4">Projects</h2>
<div class="card-group">
<div class="card">
<a
href="https://docs.google.com/presentation/d/1_UAmrGH3_FS46R6WyKyx4ZXdMM8OzFP1/edit?usp=sharing&ouid=103654641001514944069&rtpof=true&sd=true"><img
class="card-img-top" src="./assets/img/computervision.png" alt="Card image cap"></a>
<div class="card-body">
<h5 class="card-title mb-1">Computer
Vision</h5>
<p><small>by Eric Huang and Abanoub
Masoud</small></p>
<p class="card-text">Built as an intern
project for NJ TRANSIT, the Computer
Vision
application takes a raw image taken from
a camera, and runs it through machine
learning
models to detect a vehicle number. The
application is built with a Python
backend and a React Native frontend,
and can compile to all mobile
platforms.</p>
<p class="card-text"><b><a href="https://ericcchuang-computer-vision.vercel.app/">
Demo Website</b></a>
<br><b><a href="https://github.com/ericcchuang/ComputerVision">GitHub
Repo</b></a>
<br><b><a
href="https://docs.google.com/presentation/d/1_UAmrGH3_FS46R6WyKyx4ZXdMM8OzFP1/edit?usp=sharing&ouid=103654641001514944069&rtpof=true&sd=true">Final
Presentation</b></a>
</p>
</div>
</div>
<div class="card">
<a
href="https://www.figma.com/design/CBgQUvhTlIJitWTGJFChou/WasteLess?node-id=4-2220&t=5oabYO5MJ0tYvVsm-1"><img
class="card-img-top" src="./assets/img/wasteless.png" alt="Card image cap"></a>
<div class="card-body">
<h5 class="card-title mb-1">WasteLess</h5>
<p><small> by Eric Huang and Jillian
Juat</small></p>
<p class="card-text">The 1st place entry of
<b><a href="NJIT SIGCHI's 2024 Design Jam,">NJIT
SIGCHI's 2025 Design
Jam.</a></b> The project was
built in only 9 hours as we applied our
skills in user research, wireframing,
prototyping with Figma, and user testing
and iteration.
</p>
<p class="card-text"><b><a
href="https://www.figma.com/design/CBgQUvhTlIJitWTGJFChou/WasteLess?node-id=4-2220&t=5oabYO5MJ0tYvVsm-1">Interactive
Prototype</a>
<br><a
href="https://www.figma.com/design/CBgQUvhTlIJitWTGJFChou/WasteLess?node-id=4-2220&t=5oabYO5MJ0tYvVsm-1">Figma
Link</a>
<br><a
href="https://docs.google.com/presentation/d/1enwbyZjYN_yPwudPlCCj8wMWELrBmRKYdSkL7vgWPn4/edit#slide=id.g2e3e9147c57_3_2349">Design
Process Presentation</a></b>
</p>
</div>
</div>
</div>
<div class="card-group">
<div class="card">
<a href="https://mathcha.vercel.app/"><img class="card-img-top" src="./assets/img/mathcha.png"
alt="Card image cap"></a>
<div class="card-body">
<h5 class="card-title mb-1">Mathcha</h5>
<p><small> by Eric Huang, Pei Liao, and
Logan Kriebel</small></p>
<p class="card-text">
Practice your mental math with a game! Earn money to pull for rare cards and try to get
the highest score!
Built using Create React App and hosted on Vercel. Uses the <b><a
href="https://www.dedaluslabs.ai/">Dedalus Labs API</a></b> to make calls to
models to generate questions.
Built for <b><a href="https://hackprinceton-fall-2025.devpost.com/">HackPrinceton Fall
2025.</a></b>
</p>
<p class="card-text"><b><a href="https://mathcha.vercel.app/">Play!</a>
<br><a href="https://github.com/ericcchuang/matcha">GitHub
Repo</a></b>
<br><b><a href="https://devpost.com/software/mathcha">Devpost</a></b>
</p>
</div>
</div>
<div class="card">
<a href="https://cashier-simulator.vercel.app/"><img class="card-img-top"
src="./assets/img/cashier.png" alt="Card image cap"></a>
<div class="card-body">
<h5 class="card-title mb-1">Cashier
Simulator</h5>
<p><small> by Eric Huang, Simon Leong, and
Logan Kriebel</small></p>
<p class="card-text">Cashier training game
built using the Google Gemini API to
respond to and grade the player's
customer service responses.
Built using Next.js (a React framework)
and hosted on Vercel.
This project received an honorable
mention (top 3) at <b><a href="https://hackru-fall-2025.devpost.com/">HackRU
Fall 2025.</a></b> for the Wakefern Food Corp sponsor category.
</p>
<p class="card-text"><b><a href="https://cashier-simulator.vercel.app/">Play!</a>
<br><a href="https://github.com/ericcchuang/cashier-simulator">GitHub
Repo</a></b>
<br><b><a href="https://devpost.com/software/cashier-simulator-qel17m">Devpost</b></a>
</p>
</div>
</div>
</div>
<div class="card-group">
<div class="card">
<a href="https://ericcchuang.github.io/Proxemics-Website/index.html"><img class="card-img-top"
src="./assets/img/proxemics.png" alt="Card image cap"></a>
<div class="card-body">
<h5 class="card-title mb-1">Proxemics
Study</h5>
<p><small> by Eric Huang and Kapila
Mane</small></p>
<p class="card-text">This website hosts the
findings of a research project conducted
by
Kapila Mane and Eric Huang, for a
Research in User Experience course at
NJIT.
</p>
<p class="card-text"><b><a
href="https://ericcchuang.github.io/Proxemics-Website/index.html">Study
Results</a></b></p>
</div>
</div>
<div class="card">
<a
href="https://www.figma.com/file/LU22EvBi9baFKQboci5KmD/Spring-Clean-Routine?type=design&node-id=0-1&mode=design"><img
class="card-img-top" src="./assets/img/springclean.png" alt="Card image cap"></a>
<div class="card-body">
<h5 class="card-title mb-1">Spring Cleaning
Routine</h5>
<p><small> by Eric Huang</small></p>
<p class="card-text">Made for NJIT SIGCHI's 2024
Design Jam, this app prototype was designed
in Figma and encourages users to do their
chores.</p>
<p class="card-text"><b><a
href="https://www.figma.com/proto/LU22EvBi9baFKQboci5KmD/Spring-Clean-Routine?node-id=11-2&p=f&t=lo4KXX9ruLerPBHm-1&scaling=scale-down&content-scaling=fixed&page-id=0%3A1&starting-point-node-id=11%3A2">Interactive
Prototype</a>
<br><a
href="https://www.figma.com/file/LU22EvBi9baFKQboci5KmD/Spring-Clean-Routine?type=design&node-id=0-1&mode=design">Figma
Link</a></b></p>
</div>
</div>
</div>
<div class="card-group">
<div class="card">
<a href="https://github.com/ericcchuang/Personal-Website"><img class="card-img-top"
src="./assets/img/purplebanner.jpg" alt="Card image cap"></a>
<div class="card-body">
<h5 class="card-title mb-1">Personal
Website</h5>
<p><small> by Eric Huang</small></p>
<p class="card-text">The website you are looking
at right now was created by me!</p>
<p class="card-text"><b><a
href="https://github.com/ericcchuang/ericcchuang.github.io">GitHub
Repo</a></b></p>
</div>
</div>
</div>
</div>
</section>
<hr class="m-0" />
<!-- Experience-->
<section class="resume-section" id="resume">
<div class="resume-section-content">
<h2 class="mb-3">Resume</h2>
<div class="card w-50">
<div class="card-body">
<a href="assets/resume.pdf"><p class="my-0 card-title"><h5>For a downloadable version of my resume, click here!</a></h5></p>
<hr/>
<p class="card-text my-0"><b>Table of Contents</b></p>
<p class="card-text"><a href="#skills">Skills</a> | <a href="#work">Work
Experience</a> | <a href="#edu">Education</a> |
<a href="#vol">Volunteering and Leadership</a>
</p>
</div>
</div>
<!-- Skills-->
<hr class="m-10" />
<h4 class="mb-2" id="skills">Technical Skills</h4>
<hr class="m-10" />
<p><b>Tools</b></p>
<ul>
<li>Artificial Intelligence / Machine Learning</li>
<li>Cloud Computing</li>
<ul>
<li>Amazon Web Services (AWS) (EC2, S3, Lambda)</li>
<li>Google Cloud Platform (GCP)</li>
<li>Microsoft Azure / Active Directory</li>
<li>Docker</li>
<li>Networking Concepts</li>
</ul>
<li>Full Stack Development</li>
<ul>
<li>RESTful APIs</li>
</ul>
<li>Agile Methodology</li>
<li>CI/CD Pipelines</li>
<li>Git / GitHub</li>
<li>Vercel</li>
<li>UI/UX Design</li>
<li>SQL / Database Management</li>
<li>ERP Systems (SAP, Euclidian, Workday, etc.)</li>
<li>Linux</li>
</ul>
<p><b>Programming Languages</b></p>
<ul>
<li>HTML / CSS (Tailwind, Bootstrap)</li>
<li>JavaScript (node.js, React, Next.js)</li>
<li>Python (NumPy, Pandas, Jupyter)</li>
<li>Java</li>
<li>C#</li>
<li>C++</li>
</ul>
<p><b>Software</b></p>
<ul class="mb-0">
<li>Figma</li>
<li>Oracle</li>
<li>Unity</li>
<li>Tableau / PowerBI</li>
<li>Microsoft Office (Excel, PowerPoint, Word)</li>
<li>Adobe Creative Cloud (Photoshop, Illustrator,
etc.)</li>
</ul>
<hr class="m-10" />
<h4 class="mb-2" id="work">Experience</h4>
<hr class="m-10" />
<div class="d-flex flex-column flex-md-row justify-content-between mb-3">
<div class="flex-grow-1">
<h5 class="mb-0">IT Specialist Intern</h5>
<div><span class><a href="https://www.njtransit.com/"><img class="customborder"
src="./assets/img/njtransit.jpeg" height="100px" width="90px"></a></span></div>
<div><b>NJ TRANSIT - Applications
Department</b></div>
<div class="flex-shrink-0"><span class><b>June 2025
- August 2025</b></span></div>
<div class="mb-2"><b>Newark, NJ</b></div>
<ul>
<li>Built a full-stack mobile application for
iOS, Android, web using Python backend on
GCP
and React Native frontend</li>
<li>Utilized OpenVINO ML vehicle recognition and
OCR models to recognize up to 90% of NJ
TRANSIT buses and their IDs</li>
<li>Used GitHub Actions to build 5 CI/CD
Pipelines for the application, allowing for
easy
updates and maintenance</li>
</ul>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-3">
<div class="flex-grow-1">
<h5 class="mb-0">Orientation Leader</h5>
<div><span class><a href="#"><img class="customborder" src="./assets/img/nso.png" height="100px"
width="100px"></a></span></div>
<div><b>New Jersey Institute of Technology - Office
of Transitions</b></div>
<div class="flex-shrink-0"><span class><b>June 2023
- January 2024</b></span></div>
<div class="mb-2"><b>Newark, NJ</b></div>
<ul>
<li>Regularly presented about the transition to
college to groups of 400+ students and
parents</li>
<li>Assisted with event logistics to ensure
smooth operation of 15+ different
orientation
dates</li>
<li>Rapidly adaptable to changing circumstances,
such as difficult students and schedule
adjustments</li>
</ul>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-3">
<div class="flex-grow-1">
<h5 class="mb-0">Retail Sales Associate</h5>
<div><b>Macy's, Inc.</b></div>
<div class="flex-shrink-0"><span class><b>March 2022
- August 2022</b></span></div>
<div class="mb-2"><b>Edison, NJ</b></div>
<ul>
<li>Organized and kept track of 1000s of
inventory items across 500+ bins on a
computerized
system</li>
<li>Answered customer service requests for
different colors and sizes of various
merchandise
</li>
</ul>
</div>
</div>
<!-- Education-->
<hr class="m-10" />
<h4 class="mb-2" id="edu">Education</h4>
<hr class="m-10" />
<div class="d-flex flex-column flex-md-row justify-content-between mb-3">
<div class="flex-grow-1">
<h5 class="mb-0">New Jersey Institute of
Technology</h5>
<div class="mb-0"><b>Bachelor of Science in Business
and Information Systems</b></div>
<div class="flex-shrink-0"><span class><b>September
2022 - December 2025</b></span></div>
<div class="mb-2"><b>Newark, NJ</b></div>
<p>GPA: 3.9<br>
Member of the Albert Dorman Honors College<br>
Relevant Coursework:</p>
<ul>
<li>Advanced Information Systems</li>
<li>Analysis & System Design </li>
<li>Database Design, Management and
Applications</li>
<li>Developing Web Applications</li>
<li>Designing the User Experience</li>
<li>Research for User Needs</li>
<li>Business Data Analytics</li>
<li>E-commerce Technology</li>
<li>AI-Driven Text Analytics</li>
</ul>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-3">
<div class="flex-grow-1">
<h5 class="mb-0">John F. Kennedy Memorial High
School</h5>
<div class="flex-shrink-0"><span class><b>September
2018 - June 2022</b></span></div>
<div class="mb-3"><b>Iselin, NJ</b></div>
</div>
</div>
<!-- Volunteering and Leadership-->
<hr class="m-10" />
<h4 class="mb-2" id="vol">Volunteering and Leadership</h4>
<hr class="m-10" />
<div class="d-flex flex-column flex-md-row justify-content-between">
<div class="flex-grow-1">
<h5 class="mb-0">NJIT Student Senate</h5>
<div><span class><a href="http://www.njitstudentsenate.org/"><img class="customborder"
src="./assets/img/senate.png" height="100px" width="100px"></a></span></div>
<div><b>Vice President (2024-2025) / Ying Wu College
of Computing Represenative
(2023-2024) / First-Year Representative
(2022-2023)</b></div>
<div class="t-flex flex-shrink-0"><b>September 2022
- May 2025</b><br></div>
<div class="mb-2"><b>Newark, NJ</b></div>
<ul>
<li>Served on the Academic Affairs, Executive,
and Finance committees</li>
<li>Attended meetings with school administrators
2 times a semester, aggregating and
relaying student feedback</li>
<li>Assisted in chairing weekly meetings,
including knowledge of Robert's Rule of
Order,
structure of bylaws, and writing of
minutes</li>
<li>Chaired various committee meetings including
writing agendas, minutes, and assigning
action items to members</li>
<li>Assisted in distributing a budget of over
$500,000 to 150+ different
organizations</li>
</ul>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between">
<div class="flex-grow-1">
<h5 class="mb-0">Chinese Undergraduate Student
Association</h5>
<div><span class><a href="https://njitcusa.carrd.co/#"><img class="customborder"
src="./assets/img/cusa.png" height="100px" width="100px"></a></span></div>
<div><b>President</b></div>
<div class="flex-shrink-0"><b>January 2023 -
December 2023</b><br></div>
<div class="mb-2"><b>Newark, NJ</b></div>
<ul>
<li>Organized events and fundraisers to support
the Chinese-American community at NJIT</li>
<li>Initialized the first Mid-Autumn Festival
and Lunar New Year events at NJIT</li>
<li>Managed a team of 7 club officers with a
budget of $3,000 a year</li>
<li>As of December 2023, served 150+
members</li>
</ul>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between">
<div class="flex-grow-1">
<h5 class="mb-0">Association for Computing
Machinery</h5>
<div><span class><a href="https://njit.acm.org/#/"><img class="customborder"
src="./assets/img/acmLogo.png" height="100px" width="120px"></a></span></div>
<div><b>Member / Volunteer</b></div>
<div class="flex-shrink-0"><b>September 2022 -
Present</b><br></div>
<div class="mb-2"><b>Newark, NJ</b></div>
<ul>
<li>Volunteered at HackNJIT, the annual
hackathon hosted at NJIT</li>
</ul>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between">
<div class="flex-grow-1">
<h5 class="mb-0">Key Club</h5>
<div><span class><img class="customborder" src="./assets/img/keyclub.jpg" height="100px"
width="100px"></span></div>
<div><b>Member / Volunteer</b></div>
<div class="flex-shrink-0"><b>September 2019 - June
2022</b><br></div>
<div class="mb-2"><b>Iselin, NJ</b></div>
<ul>
<li>Operation Christmas Child</li>
<li>Breast Cancer Walk</li>
<li>Monthly volunteering events</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Interests-->
<section class="resume-section" id="interests">
<div class="resume-section-content">
<h2 class>Interests</h2>
<p>
<h6>Outside of school, you can find my partaking in
other hobbies!</h6>
</p>
<div class="card-group">
<div class="card">
<div class="card-body">
<h5 class="card-title">Music!</h5>
<img class="card-img-top mb-3" src="./assets/img/piano.jpeg" alt="Card image cap">
<p class="card-text">Music is one of my biggest
hobbies! I played piano for my high school's
jazz band and school musical, and am
continuing to play jazz piano at NJIT! As
well as
being a musician, I enjoy listening to a
variety of music, including EDM, J-pop,
Korean
RNB, and more. Check out my Spotify
below!</p>
<p class="card-text"><a href="https://open.spotify.com/user/erichuang135"><i
class="fab fa-spotify"></i></a></p>
</div>
</div>
<div class="card">
<div class="card-body">
<h5 class="card-title">Culture!</h5>
<img class="card-img-top mb-3" src="./assets/img/culture.jpg" alt="Card image cap">
<p class="card-text">At NJIT, I am a regular
volunteer at both CUSA (Chinese
Undergraduate
Student Association) and FINEST (Filipinos
in Newark Engaging in Sociocultural
Traditions). I'm a regular sight at events
serving the Asian-American community at
NJIT.
</p>
</div>
</div>
<div class="card">
<div class="card-body">
<h5 class="card-title">Puzzles!</h5>
<img class="card-img-top mb-3" src="./assets/img/crossword.jpg" alt="Card image cap">
<p class="card-text">I enjoy all sorts of
puzzles, such as crossword puzzles and
riddles.
The particular crossword listed above is
from NJIT's student run newspaper, The
Vector.
I also really enjoy Wordle and Connections
by the New York Times.</p>
</div>
</div>
</div>
</div>
</section>
<hr class="m-0" />
</div>
</body>
</html>