-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
817 lines (745 loc) · 48.9 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
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
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Juhuang Xue</title>
<!-- Font Awesome -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" rel="stylesheet" />
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Raleway&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script&family=Raleway&display=swap" rel="stylesheet">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js" defer></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="./assets/css/helper.css" rel="stylesheet" type="text/css">
<link href="./assets/css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="row">
<div class="col s12 m12 l12">
<!-- Navbar-->
<div class="row hide-on-large-only">
<nav class="grey darken-3">
<div class="nav-wrapper">
<a href="/" class="brand-logo center">Juhuang Xue<a href="#" data-target="slide-out" class="sidenav-trigger right" aria-label="Mobile Navbar"><i class="fas fa-bars"></i></a></a>
</div>
</nav>
<ul id="slide-out" class="sidenav right">
<li>
<div class="user-view center">
<div>
<img src="./assets/images/bio.jpg" alt="Juhuang Xue" class="info_image responsive-img">
<h4 class="white-text">Juhuang (Simon) Xue</h4>
<p class="white-text">Full Stack Developer</p>
</div>
<div>
<a href="mailto:[email protected]"><i class="fas fa-envelope white-text px-2" aria-label="[email protected]"></i></a>
<a href="https://www.linkedin.com/in/juhuang-simon-xue-57b315181/" target="_blank" rel="noreferrer" aria-label="LinkedIn"><i
class="fab fa-linkedin-in white-text px-2"></i></a>
<a href="https://www.github.com/jxh0414com" target="_blank" rel="noreferrer" aria-label="Github"><i
class="fab fa-github-alt white-text px-2"></i></a>
</div>
</div>
</li>
<li>
<div class="divider"></div>
</li>
<li>
<ul class="center sidenav-link">
<li><a href="#about" class="white-text">
<p><i class="fas fa-user px-2"></i>About</p>
</a></li>
<li><a href="#experience" class="white-text">
<p><i class="fas fa-history px-2"></i>Experience</p>
</a></li>
<li><a href="#projects" class="white-text">
<p><i class="fas fa-scroll px-2"></i>Projects</p>
</a></li>
<li><a href="#skills" class="white-text">
<p><i class="fas fa-torah px-2"></i>Skills</p>
</a></li>
<li><a href="#education" class="white-text">
<p><i class="fas fa-graduation-cap px-2"></i>Education</p>
</a></li>
<li><a href="#contact" class="white-text">
<p><i class="fas fa-map-marked-alt px-2"></i>Contact</p>
</a></li>
<li><a href="https://docs.google.com/uc?export=download&id=1v_c-onVnOaIUJ076V4HvS4PgrUXBlS88" class="white-text">
<p><i class="fas fa-file-signature px-2"></i>Resume</p>
</a></li>
</ul>
</li>
</ul>
</div>
<div id="about" class="section scrollspy p-0">
<div class="row grey darken-3 py-2 hide-on-med-and-down">
<div class="col s12 m8 l8 push-l3 push-m2">
<h1 class="m-0 white-text">About</h1>
</div>
</div>
<div class="row">
<div class="col s12 m8 l1 push-l3 push-m2">
<img src="assets/images/images.jpg" alt="Image1" class="responsive-img">
</div>
</div> <!-- Row -->
<div class="row">
<div class="col s12 m8 l4 push-l5 push-m2">
<h6>
As someone who is highly focused and attentive to detail, I thrive on building quality systems that surpass end users' expectations.
During my previous role, I was charged with developing innovative solutions across a variety of software platforms.
I was instrumental in developing Stage-Gate-Process application which helps company filter which project should be priority, which give them a direction where to approach.
I was responsible for the successful migration of Wordpress theme to new one by customizing the theme to fit which we used to have, and been creating application where its useful and easier for other department to get their work done.
I am also attentive to the need for continued process improvements. I would love to have an opportunities to further develop and build upon my web development skills in a supportive environment of leading professionals.
I'm excited about the opportunity to leverage my unique range of skills.
</h6>
</div>
</div> <!-- Row -->
<div class="row">
<div class="col s12 m8 l1 push-l10 push-m2">
<img src="assets/images/images2.jpg" alt="Image2" class="responsive-img">
</div>
</div> <!-- Row -->
</div>
<!-- -->
<!-- Experience -->
<!-- -->
<div id="experience" class="section scrollspy p-0">
<div class="row grey darken-3 py-2">
<div class="col s12 m8 l8 push-l3 push-m2">
<h1 class="m-0 white-text">Experience</h1>
</div>
</div>
<div class="row">
<div class="col s12 m8 l8 push-l3 push-m2">
<!-- Golden Artist Colors Experience -->
<div class="card grey">
<div class="card-content white-text">
<p class="card-title center">Golden Artist Colors <span class="right hide-on-small-only">Full Stack Developer</span></p>
<div class="divider"></div>
<ul class="py-2 card-description">
<li><i class="fas fa-hand-point-right px-2 py-1"></i><p>Added additional code to the child themes and created a custom plugin to our existing WordPress site to keep the
existing functionality and features that only the old theme had when migrating to the new theme.</p></li>
<li><i class="fas fa-hand-point-right px-2 py-1"></i>
<p>Applied Code splitting to existing sites into different components so it can be easily read, add additional, and
maintain. Create helper functions and reusable components.</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-1"></i>
<p>Developed a new Stage-Gate-Process web application for employees to use.</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-1"></i>
<p>Re-design/Developed a new interface and additional features for Marketing and other departments to replace the existing
one. The goal is to create something that is much easier to use than the interface provided by the third party.</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-1"></i>
<p>Communicate and fulfill the tickets/requests from other departments to make changes to the website by
adding/removing features, and update upcoming information.</p>
</li>
</ul>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4 px-2">Accomplishments<i class="fas fa-times right"></i></span>
<ul class="card-description">
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Front-End: Vue JS</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Back-End: PHP / Laravel</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Database: MySQL, Eloqent ORM</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Style: CSS3 / Vuetify / Bootstrap</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Others: Wordpress / Directus / SourceTree</p>
</li>
</ul>
</div>
<div class="card-action">
<div class="subheader white-text">January 2020 - Present | New Berlin, NY <i class="fas fa-ellipsis-h activator tooltipped right " data-position="top" data-tooltip="Accomplishments"></i></div>
</div>
</div>
<!-- Golden Artist Colors Experience -->
<!-- Art Related Things Experience -->
<div class="card grey">
<div class="card-content white-text">
<p class="card-title center">Art Related Things <span class="right hide-on-small-only">Full Stack Developer Intern</span></p>
<div class="divider"></div>
<ul class="py-2 card-description">
<li><i class="fas fa-hand-point-right px-2 py-1"></i>
<p>Re-designed/Developed a new user interface for a client's existing website into a more stunning and eye-catching website
that helps attract more customers.
</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-1"></i>
<p>Re-created the company's existing website using EJS and NODE JS as backend to communicate with MongoDB.</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-1"></i>
<p>Integrate authentication system for users to register/login to take further actions. Also added Google and Facebook
OAUTH options for users to login without making new accounts.</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-1"></i>
<p>Create a user interface to add/update/remove tickets to display list and a friendly user interface for customers to add
any tickets into the shopping carts for artist events.</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-1"></i>
<p>Using Web socket to create a notification system to track real time activities.</p>
</li>
</ul>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4 px-2">Accomplishments<i class="fas fa-times right"></i></span>
<ul class="card-description">
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Front-End: EJS View Engine </p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Back-End: Node JS / Express JS</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Database: MongoDB, Mongoose ODM</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Style: CSS3 / Bootsrap</p>
</li>
</ul>
</div>
<div class="card-action">
<div class="subheader white-text">May 2019 - August 2019 | Manhattan, NY <i class="fas fa-ellipsis-h activator tooltipped right"
data-position="top" data-tooltip="Accomplishments"></i></div>
</div>
</div>
<!-- Art Related Things Experience -->
<!-- 72 Steel and Aluminum Work Inc Experience -->
<div class="card grey">
<div class="card-content white-text">
<p class="card-title center">72 Steel and Aluminum Work Inc. <span class="right hide-on-small-only">Full Stack Developer</span></p>
<div class="divider"></div>
<ul class="py-2 card-description">
<li><i class="fas fa-hand-point-right px-2 py-1"></i>
<p>Re-creating company existing website using only HTML, CSS, and JavaScript.
</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-1"></i>
<p>Integrate NODEJS as the backend and convert HTML file to EJS as view engine.</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-1"></i>
<p>Transform existing website into a web application by implementing user authentication system which let user register and
login in order to take further actions.</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-1"></i>
<p>Create a user interface for the employees to add/update/remove products into display list and a friendly user interface
for customers to view the product details, add any product into the shopping carts and as well as to track the order
status.</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-1"></i>
<p>Integrate STRIPE API as the checkout to accept payments for the products.</p>
</li>
</ul>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4 px-2">Accomplishments<i class="fas fa-times right"></i></span>
<ul class="card-description">
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Front-End: EJS View Engine / upgraded to React</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Back-End: Node JS / Express JS</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Database: MongoDB, Mongoose ODM</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Style: CSS3 / React-Semantic UI</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Others: STRIPE API</p>
</li>
</ul>
</div>
<div class="card-action">
<div class="subheader white-text">October 2018 - February 2019 | Brooklyn, NY <i class="fas fa-ellipsis-h activator tooltipped right"
data-position="top" data-tooltip="Accomplishments"></i></div>
</div>
</div>
<!-- 72 Steel and Aluminum Work Inc Experience -->
</div> <!-- Col -->
</div> <!-- Row -->
</div>
<!-- -->
<!-- Projects -->
<!-- -->
<div id="projects" class="section scrollspy p-0">
<div class="row grey darken-3 py-2">
<div class="col s12 m8 l8 push-l3 push-m2">
<h1 class="m-0 white-text">Projects</h1>
</div>
</div>
<div class="row">
<div class="col s12 m8 l8 push-m2 push-l3">
<div class="col s12 m12 l4 px-0">
<div class="card grey project-card">
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" src="./assets/images/projects/react-todo.jpg" alt="Short URL Service" height="300">
</div>
<div class="card-content">
<span class="card-title activator grey-text text-darken-4">Short URL Service<i
class="fas fa-ellipsis-v right"></i></span>
<div class="divider"></div>
<p class="py-2">
Shorten URL into simpler form.
</p>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4 px-2">Accomplishments<i class="fas fa-times right"></i></span>
<ul class="card-description">
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Front-End: React</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Back-End: Node JS / Express JS</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Database: MySQL, Sequelize ORM</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Style: React Bootstrap</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Others: Chart JS, Heroku </p>
</li>
</ul>
<div class="card-action">
<div class="subheader white-text">
<a href="https://github.com/jxh0414com/short-url-service" aria-label="Github" rel="noreferrer" target="_blank" class="btn-floating btn-large black mx-1"><i class="fab fa-github-alt px-2"></i></a>
<a href="https://afternoon-gorge-99697.herokuapp.com/" aria-label="Expense-Tracker" rel="noreferrer" target="_blank" class="btn-floating btn-large mx-1"><i class="fas fa-code px-2"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col s12 m12 l4 px-0">
<div class="card grey project-card" >
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" src="./assets/images/projects/expense-tracker.jpg" alt="Expense Tracker" height="300">
</div>
<div class="card-content">
<span class="card-title activator grey-text text-darken-4">Expense Tracker<i
class="fas fa-ellipsis-v right"></i></span>
<div class="divider"></div>
<p class="py-2">
Keeping track of how much you earn and what / how much you expense your salary
</p>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4 px-2">Accomplishments<i class="fas fa-times right"></i></span>
<ul class="card-description">
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Front-End: Vue</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Back-End: PHP / Laravel</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Database: MySQL, Eloquent ODM</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Style: Vuetify</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Others: Vuex </p>
</li>
</ul>
<div class="card-action">
<div class="subheader white-text">
<a href="https://github.com/jxh0414com/laravel-vue-expense.tracker" aria-label="Github" rel="noreferrer" target="_blank" class="btn-floating btn-large black mx-1"><i class="fab fa-github-alt px-2"></i></a>
<a href="https://secure-bastion-06094.herokuapp.com/" aria-label="Expense-Tracker" rel="noreferrer" target="_blank" class="btn-floating btn-large mx-1"><i class="fas fa-code px-2"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col s12 m12 l4 px-0">
<div class="card grey project-card">
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" src="./assets/images/projects/react-todo.jpg" alt="React Todo" height="300">
</div>
<div class="card-content">
<span class="card-title activator grey-text text-darken-4">React-Todo<i
class="fas fa-ellipsis-v right"></i></span>
<div class="divider"></div>
<p class="py-2">
Keep track on what your new goal.
</p>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4 px-2">Accomplishments<i class="fas fa-times right"></i></span>
<ul class="card-description">
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Front-End: React</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Back-End: Node JS / Express JS</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Database: MongoDB, Mongoose ODM</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Style: Reactstrap</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Others: Redux </p>
</li>
</ul>
<div class="card-action">
<div class="subheader white-text">
<a href="https://github.com/jxh0414com/react-redux-todo" aria-label="Github" rel="noreferrer" target="_blank" class="btn-floating btn-large black mx-1"><i class="fab fa-github-alt px-2"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col s12 m12 l4 px-0">
<div class="card grey project-card">
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" src="./assets/images/projects/nodejs-ecom.jpg" alt="Node-JS Ecommerce" height="300">
</div>
<div class="card-content">
<span class="card-title activator grey-text text-darken-4">Nodejs-ecom<i
class="fas fa-ellipsis-v right"></i></span>
<div class="divider"></div>
<p class="py-2">
Creating a ecom platform that can store new products and customer can add to shopping cart and ready to purchase
</p>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4 px-2">Accomplishments<i class="fas fa-times right"></i></span>
<ul class="card-description">
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Front-End: EJS View Engine</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Back-End: Node JS / Express JS</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Database: MongoDB, Mongoose ODM</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Style: CSS3 / Semantic UI</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-4"></i>
<p>Others: STRIPE API</p>
</li>
</ul>
<div class="card-action">
<div class="subheader white-text">
<a href="https://github.com/jxh0414com/nodejs_fake.ecom" aria-label="Github" rel="noreferrer" target="_blank" class="btn-floating btn-large black mx-1"><i class="fab fa-github-alt px-2"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Project -->
</div>
</div>
<!-- -->
<!-- Skills -->
<!-- -->
<div id="skills" class="section scrollspy p-0">
<div class="row grey darken-3 py-2">
<div class="col s12 m8 l8 push-l3 push-m2">
<h1 class="m-0 white-text"><i class="fas fa-torah px-5"></i>Skills</h1>
</div>
</div>
<div class="row">
<div class="col s12 m8 l8 push-l3 push-m2">
<!-- HTML skill card -->
<div class="card">
<div class="card-content">
<h2 class="card-title">HTML</h2>
<div class="divider"></div>
<div class="row py-2">
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/html/html.jpg" class="responsive-img html-skill" alt="HTML5">
<p>HTML5</p>
</div>
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/html/ejs.jpg" class="responsive-img html-skill" alt="EJS">
<p>EJS</p>
</div>
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/html/blade.jpg" class="responsive-img html-skill" alt="BladePHP">
<p>BladePHP</p>
</div>
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/html/jsx.jpg" class="responsive-img html-skill" alt="JSX">
<p>JSX</p>
</div>
</div>
</div>
</div>
<!-- HTML card-->
<!-- CSS skill card -->
<div class="card">
<div class="card-content">
<h2 class="card-title">CSS</h2>
<div class="divider"></div>
<div class="row py-2">
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/css/css3.jpg" class="responsive-img css-skill" alt="CSS3">
<p>CSS3</p>
</div>
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/css/sass.jpg" class="responsive-img css-skill" alt="SASS">
<p>SASS</p>
</div>
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/css/bootstrap.jpg" class="responsive-img css-skill" alt="Bootstrap">
<p>Bootstrap</p>
</div>
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/css/materialize.jpg" class="responsive-img css-skill" alt="Materialize">
<p>Materialize</p>
</div>
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/css/semanticUI.jpg" class="responsive-img css-skill" alt="Semantic UI">
<p>Semantic</p>
</div>
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/css/reactstrap.jpg" class="responsive-img css-skill" alt="Reactstrap">
<p>Reactstrap</p>
</div>
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/css/antDesign.jpg" class="responsive-img css-skill" alt="Ant Design">
<p>Ant Design</p>
</div>
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/css/vuetify.jpg" class="responsive-img css-skill" alt="Vuetify">
<p>Vuetify</p>
</div>
</div>
</div>
</div>
<!-- CSS skill card -->
<!-- JS skill card -->
<div class="card">
<div class="card-content">
<h2 class="card-title">Javascript</h2>
<div class="divider"></div>
<div class="row py-2">
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/js/javascript.jpg" class="responsive-img js-skill" alt="Javascript">
<p>Javascript</p>
</div>
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/js/jquery.jpg" class="responsive-img js-skill" alt="jQuery">
<p>jQuery</p>
</div>
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/js/react.jpg" class="responsive-img js-skill" alt="React">
<p>React</p>
</div>
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/js/redux.jpg" class="responsive-img js-skill" alt="Redux">
<p>Redux</p>
</div>
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/js/vue.jpg" class="responsive-img js-skill" alt="Vue">
<p>Vue</p>
</div>
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/js/vuex.jpg" class="responsive-img js-skill" alt="Vuex">
<p>Vuex</p>
</div>
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/js/nuxtjs.jpg" class="responsive-img js-skill" alt="NuxtJS">
<p>Nuxt</p>
</div>
</div>
</div>
</div>
<!-- JS card-->
<!-- BackEnd skill card -->
<div class="card">
<div class="card-content">
<h2 class="card-title">Back-End</h2>
<div class="divider"></div>
<div class="row py-2">
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/backend/nodejs.jpg" class="responsive-img backend-skill" alt="Node JS">
<p class="center">Node</p>
</div>
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/backend/php.jpg" class="responsive-img backend-skill" alt="PHP">
<p>PHP</p>
</div>
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/backend/expressjs.jpg" class="responsive-img backend-skill" alt="Express JS">
<p>Express</p>
</div>
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/backend/laravel.jpg" class="responsive-img backend-skill" alt="Laravel">
<p>Laravel</p>
</div>
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/backend/mongodb.jpg" class="responsive-img backend-skill" alt="MongoDB">
<p>MongoDB</p>
</div>
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/backend/mysql.jpg" class="responsive-img backend-skill" alt="MySQL">
<p>MySQL</p>
</div>
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/backend/postgresql.jpg" class="responsive-img backend-skill" alt="Postgresql">
<p>Postgresql</p>
</div>
</div>
</div>
</div>
<!-- BackEnd card-->
<!-- Other skill card -->
<div class="card">
<div class="card-content">
<h2 class="card-title">Other</h2>
<div class="divider"></div>
<div class="row py-2">
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/other/wordpress.jpg" class="responsive-img other-skill" alt="Wordpress">
<p>WordPress</p>
</div>
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/other/npm.jpg" class="responsive-img other-skill" alt="NPM">
<p>NPM</p>
</div>
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/other/composer.jpg" class="responsive-img other-skill" alt="Composer">
<p>Composer</p>
</div>
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/other/heroku.jpg" class="responsive-img other-skill" alt="Heroku">
<p>Heroku</p>
</div>
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/other/firebase.jpg" class="responsive-img other-skill" alt="Firebase">
<p>Firebase</p>
</div>
<div class="col s6 m4 l2 p-1 center">
<img src="assets/images/other/github.jpg" class="responsive-img other-skill" alt="Github">
<p>Github</p>
</div>
</div>
</div>
</div> <!-- Other card-->
</div> <!-- Col-->
</div> <!-- Row -->
</div>
<!-- -->
<!-- Education -->
<!-- -->
<div id="education" class="section scrollspy p-0">
<div class="row grey darken-3 py-2">
<div class="col s12 m8 l8 push-l3 push-m2">
<h1 class="m-0 white-text"><i class="fas fa-graduation-cap px-5"></i>Education</h1>
</div>
</div>
<!-- Brooklyn College -->
<div class="row">
<div class="col s12 m8 l8 push-l3 push-m2">
<div class="card grey">
<div class="card-content white-text">
<p class="card-title">Brooklyn College CUNY </p>
<div class="divider"></div>
<ul class="py-2 card-description">
<li><i class="fas fa-hand-point-right px-2 py-1"></i>
<p>B.S in Computer Science
</p>
</li>
<li><i class="fas fa-hand-point-right px-2 py-1"></i>
<p>September 2014 - December 2018</p>
</li>
</ul>
</div>
</div>
</div> <!-- Col -->
</div> <!-- Row -->
<!-- Brooklyn College -->
</div>
<!-- -->
<!-- Contact -->
<!-- -->
<div id="contact" class="section scrollspy p-0">
<div class="row grey darken-3 py-2">
<div class="col s12 m8 l8 push-l3 push-m2">
<h1 class="m-0 white-text"><i class="fas fa-map-marked-alt px-5"></i>Contact</h1>
</div>
</div>
<!-- Brooklyn College -->
<div class="row">
<div class="col s12 m8 l8 push-l3 push-m2">
<h5>CONTACT ME, I am available for hire and open to any ideas.</h5>
<p class="py-2"><a href="mailto:[email protected]" class="btn-floating btn-large pulse lime mx-4" aria-label="[email protected]"><i class="fas fa-envelope px-2"></i></a href="mailto:[email protected]">[email protected]</p>
<p class="py-2"><a href="https://www.linkedin.com/in/juhuang-simon-xue-57b315181/" class="btn-floating btn-large pulse blue mx-4" rel="noreferrer" target="_blank" aria-label="LinkedIn"><i class="fab fa-linkedin-in px-2"></i></a><a href="https://www.linkedin.com/in/juhuang-simon-xue-57b315181/">https://www.linkedin.com/in/juhuang-simon-xue-57b315181/</a></p>
<p class="py-2"><a href="https://www.github.com/jxh0414com" rel="noreferrer" target="_blank" class="btn-floating btn-large pulse black mx-4" aria-label="Github"><i class="fab fa-github-alt px-2"></i></a><a href="https://www.github.com/jxh0414com">https://www.github.com/jxh0414com</a></p>
<p class="py-2"><a href="tel:6462557585" class="btn-floating btn-large pulse brown mx-4" aria-label="646-255-7585"><i class="fas fa-mobile px-2"></i></a>646-255-7585</p>
</div>
</div> <!-- Row -->
</div>
</div>
<div class="col hide-on-small-only m3 l2">
<ul class="sidenav sidenav-fixed">
<li>
<div class="user-view center">
<div>
<img src="./assets/images/bio.jpg" alt="Juhuang Xue" class="info_image responsive-img">
<h4 class="white-text">Juhuang (Simon) Xue</h4>
<p class="white-text">Full Stack Developer</p>
</div>
<div>
<a href="mailto:[email protected]"><i class="fas fa-envelope white-text px-2" aria-label="[email protected]"></i></a>
<a href="https://www.linkedin.com/in/juhuang-simon-xue-57b315181/" rel="noreferrer" target="_blank" aria-label="LinkedIn"><i
class="fab fa-linkedin-in white-text px-2"></i></a>
<a href="https://www.github.com/jxh0414com" rel="noreferrer" target="_blank" aria-label="Github"><i
class="fab fa-github-alt white-text px-2"></i></a>
</div>
</div>
</li>
<li>
<div class="divider"></div>
</li>
<li>
<ul class="sidenav-link center">
<li><a href="#about" class="white-text">
<p><i class="fas fa-user px-2"></i>About</p>
</a>
</li>
<li><a href="#experience" class="white-text">
<p><i class="fas fa-history px-2"></i>Experience</p>
</a></li>
<li><a href="#projects" class="white-text">
<p><i class="fas fa-scroll px-2"></i>Projects</p>
</a></li>
<li><a href="#skills" class="white-text">
<p><i class="fas fa-torah px-2"></i>Skills</p>
</a></li>
<li><a href="#education" class="white-text">
<p><i class="fas fa-graduation-cap px-2"></i>Education</p>
</a></li>
<li><a href="#contact" class="white-text">
<p><i class="fas fa-map-marked-alt px-2"></i>Contact</p>
</a></li>
<li><a href="https://docs.google.com/uc?export=download&id=1v_c-onVnOaIUJ076V4HvS4PgrUXBlS88" class="white-text">
<p><i class="fas fa-file-signature px-2"></i>Resume</p>
</a></li>
</ul>
</li>
</ul>
</div>
</div>
<script src="./assets/js/app.js" defer></script>
</body>
</html>