-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2063 lines (1887 loc) · 87.4 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
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!--# ViLinh27.github.io-->
<!--For my portfolio site.-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> -->
<title>Portfolio 2024-Linh Nguyen</title>
<link rel="stylesheet" href="/./styling/sassStyles.css">
<!--icons-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body class="d-flex flex-column min-vh-100">
<!--- TOP BANNER --->
<div class="banner">
<div class="top-banner">
<div class="topnav" id="mainTopNav">
<!--tabs container-->
<ul id="portfolio-filters">
<li class="filter-active" data-filter=".filter-code, .filter-ux, .filter-art" >
<button class="tablinks" onclick="openTab(event,'project-grid')" id="defaultOpen">Home</button>
</li>
<li data-filter=".filter-code">
<button class="tablinks" onclick="" id="code-filter" >Code</button>
</li>
<li data-filter=".filter-ux">
<button class="tablinks" onclick="" id="ux-filter">UX</button>
</li>
<li data-filter=".filter-art">
<button class="tablinks" onclick="" id="art-filter">Art</button>
</li>
<li>
<button class="tablinks" onclick="openTab(event,'about-grid')">About</button>
</li>
<li>
<button class="tablinks" onclick="openTab(event,'cv-grid')">CV</button>
</li>
<li data-filter=".filter-code, .filter-ux, .filter-art">
<button class="designbtn" id="darkModebtn" onclick="toggleDarkMode()">Dark Mode</button>
</li>
</ul>
<a href="javascript:void(0);" class="icon" onClick="responsiveMenu()">
<i class="fa fa-bars"></i>
</a>
</div>
<!--end of topnav-->
</div>
<!-- top banner-->
<img src="https://pbs.twimg.com/media/GKQQB2lW4AAwvFo?format=png&name=small" alt="dog" class="dog" />
<div class="top-banner_name">
Hello, Visitor!
</div>
<div class="top-banner_desc">
<span>My name is Vi-Linh Nguyen </span>
<span>(VEE LINN WIN)</span>
</div>
</div>
<!--end of banner-->
<!--- PROJECT GRID --->
<div class="tabcontent" id="project-grid">
<!--todo react app-->
<div class="pcontainer filter-code">
<div class="card" id="project18">
<div class="is-active"></div>
<div class="item_content" id="proj18text">
<p class="item_title">To Do blog application in React</p>
<p class="item_description">This is a simple blog code project made in React JS</p>
<button class="proj_outsideLink"><a href="https://github.com/ViLinh27/lab2-todoapp">Click to explore more.</a></button>
</div>
</div>
</div>
<!--OOP class proj-->
<div class="pcontainer filter-code">
<div class="card" id="project16">
<div class="is-active"></div>
<div class="item_content" id="proj16text">
<p class="item_title">Drawing App in Java</p>
<p class="item_description">This is a simple drawing app made in Java code</p>
<button class="proj_outsideLink"><a href="https://github.com/ViLinh27/se450-FinalProject">Click to explore more.</a></button>
</div>
</div>
</div>
<!-- time to talk Game-->
<div class="pcontainer filter-code">
<div class="card" id="project7">
<div class="is-active"></div>
<div class="item_content" id="proj7text">
<p class="item_title">Time To Talk</p>
<p class="item_description">This is a visual novel game project</p>
<button class="proj_outsideLink"><a href="https://linh-is-tibia.itch.io/time-to-talk">Click to explore more.</a></button>
</div>
</div>
</div>
<!--end of project 7-->
<!--Cartridge collector game-->
<div class="pcontainer filter-code">
<div class="card" id="project8">
<div class="is-active"></div>
<div class="item_content" id="proj8text">
<p class="item_title">Cartridge Collector</p>
<p class="item_description">This is a platformer game project</p>
<button class="proj_outsideLink"><a href="https://linh-is-tibia.itch.io/cartridge-collector">Click to explore more.</a></button>
</div>
</div>
</div>
<!--end of project 8-->
<!--Hell ghost game-->
<div class="pcontainer filter-code">
<div class="card" id="project9">
<div class="is-active"></div>
<div class="item_content" id="proj9text">
<p class="item_title">Hell Ghost</p>
<p class="item_description">This is an endless runner game.</p>
<button class="proj_outsideLink"><a href="https://linh-is-tibia.itch.io/hellghost">Click to explore more.</a></button>
</div>
</div>
</div>
<!--end of project 9-->
<!--sql projects-->
<div class="pcontainer filter-code">
<div class="card" id="project5">
<div class="is-active"></div>
<div class="item_content" id="proj5text">
<p class="item_title">SQL</p>
<p class="item_description">I explore Sql here</p>
<button class="modal-btn" href="#myModal5" onclick="topFunc()">Click to explore more.</button>
</div>
<!--end of item content-->
</div>
</div>
<!--end of project item 5-->
<!--android notes-->
<div class="pcontainer filter-code">
<div class="card" id="project10">
<div class="is-active"></div>
<div class="item_content" id="proj10text">
<p class="item_title">Android Notes</p>
<p class="item_description">A simple android app from my Android development class</p>
<button class="modal-btn" href="#myModal10">Click to explore more.</button>
</div>
</div>
</div>
<!--ios book tracker app-->
<div class="pcontainer filter-ux">
<div class="card" id="project11">
<div class="is-active"></div>
<div class="item_content" id="proj11text">
<p class="item_title">IOS book tracker</p>
<p class="item_description">A simple book tracker app from my IOS development class</p>
<button class="modal-btn" href="#myModal11">Click to explore more.</button>
</div>
</div>
</div>
<!--IA Rouyn Noranda project-->
<div class="pcontainer filter-ux">
<div class="card" id="project12">
<div class="is-active"></div>
<div class="item_content" id="proj12text">
<p class="item_title">Rouyn Noranda UX project</p>
<p class="item_description">An exploration of the information architecture of an existing site.</p>
<button class="modal-btn" href="#myModal12">Click to explore more.</button>
</div>
</div>
</div>
<!--tiny fingers discussion UX-->
<div class="pcontainer filter-ux">
<div class="card" id="project13">
<div class="is-active"></div>
<div class="item_content" id="proj13text">
<p class="item_title">UX discussion paper</p>
<p class="item_description">Discussing two external papers about UX and design.</p>
<button class="modal-btn" href="#myModal13">Click to explore more.</button>
</div>
</div>
</div>
<!--peezyfind-->
<div class="pcontainer filter-ux">
<div class="card" id="project14">
<div class="is-active"></div>
<div class="item_content" id="proj14text">
<p class="item_title">PeezyFind</p>
<p class="item_description">A mobile application concept.</p>
<button class="modal-btn" href="#myModal14">Click to explore more.</button>
</div>
</div>
</div>
<!--c# projects-->
<!-- <div class="pcontainer">
<div class="card" id="project6">
<div class="is-active"></div>
<div class="item_content" id="proj6text">
<p class="item_title">C#</p>
<p class="item_description">I explore C# here</p>
<button class="modal-btn" href="#myModal6">Click to explore more.</button>
</div>
</div>
</div> -->
<!--end of project item 6-->
<!--fan art-->
<div class="pcontainer filter-art">
<div class="card" id="project1">
<div class="is-active"></div>
<div class="item_content" id="proj1text">
<p class="item_title">fan art</p>
<p class="item_description">This is the fan art gallery.</p>
<button class="modal-btn" href="#myModal1">Click to explore more.</button>
</div>
<!--end of item content-->
</div>
</div>
<!--end of project item 1-->
<!--monochrome celeb portraits-->
<div class="pcontainer filter-art">
<div class="card" id="project2">
<div class="is-active"></div>
<div class="item_content" id="proj2text">
<p class="item_title">Public Figure Portraits</p>
<p class="item_description">This is the portrait gallery of real people.</p>
<button class="modal-btn" href="#myModal2">Click to explore more.</button>
</div>
<!--end of item content-->
</div>
</div>
<!--end of project item 2-->
<!--OCs-->
<div class="pcontainer filter-art">
<div class="card" id="project3">
<div class="is-active"></div>
<div class="item_content" id="proj3text">
<p class="item_title">Original Characters</p>
<p class="item_description">This is where my original characters are.</p>
<button class="modal-btn" href="#myModal3">Click to explore more.</button>
</div>
<!--end of item content-->
</div>
</div>
<!--end of project item 3-->
<!--draw this in your style-->
<div class="pcontainer filter-art">
<div class="card" id="project4">
<div class="is-active"></div>
<div class="item_content" id="proj4text">
<p class="item_title">DTIYS Challenges</p>
<p class="item_description">Instagram will often have drawing challenges. This is a gallery of them.</p>
<button class="modal-btn" href="#myModal4">Click to explore more.</button>
</div>
<!--end of item content-->
</div>
</div>
<!--end of project item 4-->
<!--ella collab-->
<div class="pcontainer filter-art">
<div class="card" id="project15">
<div class="is-active"></div>
<div class="item_content" id="proj15text">
<p class="item_title">Concept Collaboration Project</p>
<p class="item_description">Collaborate on a film concept project</p>
<button class="modal-btn" href="#myModal15">Click to explore more.</button>
</div>
</div>
</div>
<!--layouts-->
<div class="pcontainer filter-art">
<div class="card" id="project17">
<div class="is-active"></div>
<div class="item_content" id="proj17text">
<p class="item_title">Layouts and Backgrounds</p>
<p class="item_description">Environments drawn in different styles.</p>
<button class="modal-btn" href="#myModal17">Click to explore more.</button>
</div>
</div>
</div>
</div>
<!--end of project grid-->
<!---ABOUT CONTENT--->
<div class="tabcontent" id="about-grid">
<div class="about-container">
<div class="about-item">
<p class="about-txt">
Hello! This Vi-Linh Nguyen (pronounced VEE LIN WIN). She is a DePaul University alumni with a degree in computer
science. Computer Science has offered her a flexibility that
satisfies the technical side of her brain into building sites
and apps for people to interact with. A bachelors in animation and a lifelong passion for art helps Vi-Linh
understand the principles of visual appeal from a user perspective.
</p>
<p class="about-txt" id="about-email">
<button class="modal-btn" href="#">
</button>
</p>
</div>
<div class="about-item">
<img src="https://pbs.twimg.com/media/FjgTPE3XgAAGAyM?format=jpg&name=medium" class="about-img" alt="ME"
id="aboutmepic" />
</div>
</div>
</div>
<!---CV CONTENT--->
<div class="tabcontent" id="cv-grid">
<div class="cv-container">
<div class="cv-header">
<p>[email protected] | <a href="https://github.com/ViLinh27">https://github.com/ViLinh27</a> | <a href="https://www.linkedin.com/in/vilinhnguyen27/">https://www.linkedin.com/in/vilinhnguyen27/</a></p>
</div>
<div class="cv-education">
<h3>Education</h3>
<hr />
<div class="cv-e_item">
<div class="cv-e_school">
<h4>DePaul University</h4>
<p>M.S. - Computer Science, Human Computer Interaction Concentration</p>
</div>
<div class="cv_Info">
<p>Chicago, IL</p>
<p>Graduation Date: Dec 2023</p>
</div>
</div>
<div class="cv-e_item">
<div class="cv-e_school">
<h4>Columbia College Chicago</h4>
<p>B.A. - Cinema Arts and Sciences, Animation Concentration</p>
</div>
<div class="cv_Info">
<p>Chicago, IL</p>
</div>
</div>
</div>
<div class="cv-work">
<h3>Work Experience</h3>
<hr />
<div class="cv-w_item">
<div class="cv-w_job">
<h4>CIP Chicago</h4>
<h5>Web Developer | Web Designer</h5>
<ul>
<li>Conducted competitive analysis of 6 industry leading websites, indentifying 3 key design trends and best practices
directly applicable to organization goals.</li>
<li>Executed a complete overhaul of the organization's website, following new branding guidelines from the supervisor,
resulting in a 20% increase in organic website traffic and a 15% boost in conversion rates.</li>
<li>Analyzed and evaluated potential international talent based on supervisor criteria, resulting in a 30% increase in the
number of qualified candidates for consideration.</li>
</ul>
</div>
<div class="cv_Info">
<p>Chicago</p>
<p>Mar 2023 - Jun 2023</p>
</div>
</div>
<div class="cv-w_item">
<div class="cv-w_job">
<h4>HUGS International</h4>
<h5>Frontend Web Developer</h5>
<ul>
<li>Developed responsive website pages adhering to W3C standards and cross-browser compatibility best practices.</li>
<li>Successfully fixed high severity bugs as needed by the product manager, ensuring more efficient code review.</li>
<li>Integrated frontend with backend ensuring smooth data flow between user interface and server-side logic with
guidance from backend team.</li>
</ul>
</div>
<div class="cv_Info">
<p>San Diego</p>
<p>Feb 2022 - May 2022</p>
</div>
</div>
<div class="cv-w_item">
<div class="cv-w_job">
<h4>SuperWorld</h4>
<h5>Frontend Web Developer</h5>
<ul>
<li>Troubleshooted React and Javascript errors in organization's website application, leading to a smoother user
experience.</li>
<li>Navigated series of iterative design tests on application page sections to meet evolving supervisor requirements,
guided closely UX team, resulting in 20% increase in user engagement metrics.</li>
<li>Collaborated with design team to seamlessly integrate new branding elements into web application sections, resulting
in a 10% improvement in overall user experience.</li>
</ul>
</div>
<div class="cv_Info">
<p>San Francisco</p>
<p>Jan 2021 - Jun 2021</p>
</div>
</div>
<div class="cv-w_item">
<div class="cv-w_job">
<h4>Happy Mercs</h4>
<h5>Animator</h5>
<ul>
<li>Presented constructive feedback on colleagues' assigned animation clips, actively participated in brainstorming
sessions to refine pilot project concepts.</li>
<li>Collaborated with on remote team of 8 people to develop cohesive animation sequences that seamlessly integrate
with pilot trailer.</li>
<li>Delivered high-quality 2D character animations with a frame rate of 24 fps, ensuring fluid movement by industry
standard.</li>
</ul>
</div>
<div class="cv_Info">
<p>New York City</p>
<p>Oct 2018 - Jan 2019</p>
</div>
</div>
</div>
<div class="cv-skills">
<h3>Skills</h3>
<hr />
<div class="cv-s_table">
<table>
<tr>
<th>Frontend Development:</th>
<td>
<div class="cv-s_tableInfo">
<div>React JS</div>
<div> | </div>
<div>HTML5</div>
<div> | </div>
<div>CSS3</div>
<div> | </div>
<div>Javascript</div>
</div>
</td>
</tr>
<tr>
<th>Backend Development:</th>
<td>
<div class="cv-s_tableInfo">
<div>Node.js</div>
<div> | </div>
<div>Swift</div>
<div> | </div>
<div>Java</div>
<div> | </div>
<div>SQL</div>
<div> | </div>
<div>C#</div>
<div> | </div>
<div>Python</div>
</div>
</td>
</tr>
<tr>
<th>Design:</th>
<td>
<div class="cv-s_tableInfo">
<div>Adobe Illustrator</div>
<div> | </div>
<div>Adobe Photoshop</div>
<div> | </div>
<div>Adobe Flash</div>
<div> | </div>
<div>Figma</div>
<div> | </div>
<div>Axure</div>
</div>
</td>
</tr>
<tr>
<th>Miscellaneous:</th>
<td>
<div class="cv-s_tableInfo">
<div>Git</div>
<div> | </div>
<div>French Fluency</div>
<div> | </div>
<div>Vietnamese Fluency</div>
<div> | </div>
<div>Microsoft Word</div>
<div> | </div>
<div>Microsoft Powerpoint</div>
</div>
</td>
</tr>
</table>
</div>
</div>
<div class="cv-courses">
<h3>Coursework</h3>
<hr />
<div class="cv-c_container">
<div class="cv-c_course">Data Structures I & II</div> |
<div class="cv-c_course">Applied Algorithms</div> |
<div class="cv-c_course">Discrete Math</div> |
<div class="cv-c_course">Systems I & II</div> |
<div class="cv-c_course">Android Development I </div> |
<div class="cv-c_course">IOS Development I </div> |
<div class="cv-c_course">User Centered Design</div> |
<div class="cv-c_course">Prototyping and Implementation</div> |
<div class="cv-c_course">Information Architecture</div>
<div class="cv-c_course">Automata Theory</div>
</div>
</div>
<div class="cv-interests">
<h3>Interests</h3>
<hr />
<div class="cv-i_container">
<div class="cv-i_interest">Web Development</div> |
<div class="cv-i_interest">Mobile Application Development</div> |
<div class="cv-i_interest">UX</div> |
<div class="cv-i_interest">Illustration</div> |
<div class="cv-i_interest">Design</div> |
</div>
</div>
</div>
</div>
<!--- MODALS --->
<!--fan art-->
<div class="modal" id="myModal1" >
<div class="modal-content">
<div class="modal-header">
<!--<span class="close">
<i class="fa fa-window-close" aria-hidden="true"></i>
</span>-->
<h2>Fan Art</h2>
</div>
<!--end of modal header-->
<div class="modal-body">
<figure class="mbc_container">
<img src="https://pbs.twimg.com/media/FVPnDX1WIAMP1vt?format=jpg&name=large" alt="me but show"
class="modal-img" />
<figcaption class="mbc_content">
<p class="">
Different show styles
</p>
</figcaption>
<span class="mbc_content-hover">
<p class="">
Different show styles
</p>
</span>
</figure>
<figure class="mbc_container">
<img src="/assets/art/fanart/theuden2-webtoon.jpg" alt="isran" class="modal-img" />
<figcaption class="mbc_content">
<p>Theuden in the rain</p>
</figcaption>
<span class="mbc_content-hover">
<p>Theuden in the rain</p>
</span>
</figure>
<figure class="mbc_container">
<img src="https://pbs.twimg.com/media/FQGaDjGWUAseXdC?format=png&name=900x900" alt="owl house card"
class="modal-img" />
<figcaption class="mbc_content">
<p>
Owl House Tarot: Hunter
</p>
</figcaption>
<span class="mbc_content-hover">
<p>
Owl House Tarot: Hunter
</p>
</span>
</figure>
<figure class="mbc_container">
<img src="https://pbs.twimg.com/media/FhEwQA1XkAMRFEX?format=jpg&name=medium" alt="acnh bunny aro"
class="modal-img" />
<figcaption class="mbc_content">
<p>The Constellation Witch - Animal Crossing</p>
</figcaption>
<span class="mbc_content-hover">
<p>The Constellation Witch - Animal Crossing</p>
</span>
</figure>
<figure class="mbc_container">
<img src="/assets/art/fanart/isran-webtoon.jpg" alt="isran" class="modal-img"/>
<figcaption class="mbc_content">
<p>Isran but animal crossing</p>
</figcaption>
<span class="mbc_content-hover">
<p>isran but animal crossing</p>
</span>
</figure>
<figure class="mbc_container">
<img src="/assets/art/fanart/theuden3-webtoon.jpg" alt="isran" class="modal-img" />
<figcaption class="mbc_content">
<p>Theuden but animal crossing</p>
</figcaption>
<span class="mbc_content-hover">
<p>Theuden but animal crossing</p>
</span>
</figure>
</div>
<!--end of modalbody-->
<div class="modal-footer">Modal footer</div>
<!--end of modal footer-->
</div>
<!--end of modal content-->
</div>
<!--end of modal containaer-->
<!--celeb portraits-->
<div class="modal" id="myModal2">
<div class="modal-content">
<div class="modal-header">
<!--<span class="close">
<i class="fa fa-window-close" aria-hidden="true"></i>
</span>-->
<h2>Public Figure Portraits</h2>
</div>
<!--end of modal header-->
<div class="modal-body">
<figure class="mbc_container">
<img
src="https://64.media.tumblr.com/65dab7131d743e756a8252a7d71fc523/2dda13b65f6834c4-0b/s1280x1920/f02f116e2a8c70a1ddbe97657d2367cf0b9e2a71.pnj"
alt="Amazin Le Thi" class="modal-img" />
<figcaption class="mbc_content">
<p>Amazin Le Thi</p>
</figcaption>
<span class="mbc_content-hover">
<p>Amazin Le Thi</p>
</span>
</figure>
<figure class="mbc_container">
<img
src="https://64.media.tumblr.com/0285f58a8bf3d6ca9a7b047f2c8ef80c/2dda13b65f6834c4-39/s1280x1920/bc037f4905054066830b15e29f9a05d7a0301d8e.pnj"
alt="Kevin Kreider" class="modal-img" />
<figcaption class="mbc_content">
<div class="modal-body_txt">
<p>Kevin Kreider</p>
</div>
</figcaption>
<span class="mbc_content-hover">
<p>Kevin Kreider</p>
</span>
</figure>
<figure class="mbc_container">
<img
src="https://64.media.tumblr.com/cf4ca6ca18d889cc795278f7f1af42ec/2dda13b65f6834c4-f6/s1280x1920/a7671c84f9566320e92bd479fc952b342936261e.pnj"
alt="Oscar Isaac" class="modal-img" />
<figcaption class="mbc_content">
<p>Oscar Isaac</p>
</figcaption>
<span class="mbc_content-hover">
<p>Oscar Isaac</p>
</span>
</figure>
</div>
<!--end of modalbody-->
<div class="modal-footer">Modal footer</div>
<!--end of modal footer-->
</div>
<!--end of modal content-->
</div>
<!--end of modal containaer-->
<!--my OCs-->
<div class="modal" id="myModal3" >
<div class="modal-content">
<div class="modal-header">
<!--<span class="close">
<i class="fa fa-window-close" aria-hidden="true"></i>
</span>-->
<h2>Original Characters</h2>
</div>
<!--end of modal header-->
<div class="modal-body">
<figure class="mbc_container">
<img src="https://pbs.twimg.com/media/FgXTfecXgA0L2Rk?format=jpg&name=medium" alt="Zolin" class="modal-img" />
<figcaption class="mbc_content">
<p>Zolin</p>
</figcaption>
<span class="mbc_content-hover">
<p>Zolin</p>
</span>
</figure>
<figure class="mbc_container"> <img src="https://pbs.twimg.com/media/FgXTfebXgAI2_Jt?format=jpg&name=medium"
alt="Beatriz" class="modal-img" />
<figcaption class="mbc_content">
<p>Beatriz</p>
</figcaption>
<span class="mbc_content-hover">
<p>Beatriz</p>
</span>
</figure>
<figure class="mbc_container">
<img src="https://pbs.twimg.com/media/FgXTfedWYAEUk3E?format=jpg&name=medium" alt="Erdutza" class="modal-img" />
<figcaption class="mbc_content">
<p>Erdutza</p>
</figcaption>
<span class="mbc_content-hover">
<p>Erdutza</p>
</span>
</figure>
</div>
<!--end of modalbody-->
<div class="modal-footer">Modal footer</div>
<!--end of modal footer-->
</div>
<!--end of modal content-->
</div>
<!--end of modal containaer-->
<!--dtiys-->
<div class="modal" id="myModal4">
<div class="modal-content">
<div class="modal-header">
<!--<span class="close">
<i class="fa fa-window-close" aria-hidden="true"></i>
</span>-->
<h2>DTIYS</h2>
</div>
<!--end of modal header-->
<div class="modal-body">
<div class="modal-body_itms">
<figure class="mbc_container">
<img
src="https://64.media.tumblr.com/09d6bf531f7513fab4d950080b133834/c0bfb20c65b25ea2-eb/s1280x1920/06453f0ba0305c6d19e4596887c38a9a2fcf7565.pnj"
alt="silka" class="modal-img" />
<figcaption class="mbc_content">
<p>Original subject by silka.art on Instagram</p>
</figcaption>
<span class="mbc_content-hover">
<p>Original subject by silka.art on Instagram</p>
</span>
</figure>
</div>
<div class="modal-body_itms">
<figure class="mbc_container">
<img
src="https://64.media.tumblr.com/1e26be774ca115516055d40247278ba8/c0bfb20c65b25ea2-9b/s1280x1920/ba8598291a5491d4c2ba1539927ac360b7b5a048.pnj"
alt="bellebubben" class="modal-img" />
<figcaption class="mbc_content">
<p>Original subject by bellebubben on instagram</p>
</figcaption>
<span class="mbc_content-hover">
<p>Original subject by bellebubben on instagram</p>
</span>
</figure>
</div>
<div class="modal-body_itms">
<figure class="mbc_container">
<img
src="https://64.media.tumblr.com/47e83b72a97ef65f359fd303e27ccaf1/c0bfb20c65b25ea2-bc/s1280x1920/b4d0f84ccabaa35e83ec5baae07b1bdce3f8a95e.pnj"
alt="cookysparks" class="modal-img" />
<figcaption class="mbc_content">
<p>Original subject by cookysparks on instagram</p>
</figcaption>
<span class="mbc_content-hover">
<p>Original subject by cookysparks on instagram</p>
</span>
</figure>
</div>
<div class="modal-body_itms">
<figure class="mbc_container">
<img
src="https://64.media.tumblr.com/b20a63f116088d533e6698b601f8479b/c0bfb20c65b25ea2-97/s1280x1920/4f60ee2b6ccaef7f717f9d71d0ba32035df86ea5.pnj"
alt="cyarine" class="modal-img" />
<figcaption class="mbc_content">
<p>Original subject by cyarine on instagram</p>
</figcaption>
<span class="mbc_content-hover">
<p>Original subject by cyarine on instagram</p>
</span>
</figure>
</div>
<!-- <div class="modal-body_itms">
<figure class="mbc_container">
<img src="" alt="" class="modal-img" />
<figcaption class="mbc_content">
<p>Original subject by</p>
</figcaption>
<span class="mbc_content-hover">
<p>Original subject by</p>
</span>
</figure>
</div> -->
</div>
<!--end of modalbody-->
<div class="modal-footer">Modal footer</div>
<!--end of modal footer-->
</div>
<!--end of modal content-->
</div>
<!--end of modal containaer-->
<!--sql projects-->
<div class="modal" id="myModal5">
<div class="modal-content">
<div class="modal-header">
<!--<span class="close">
<i class="fa fa-window-close" aria-hidden="true"></i>
</span>-->
<h2>SQL</h2>
</div>
<!--end of modal header-->
<div class="modal-body">
<figure class="mbc_container">
<img src="/assets/code/relationalModel-SQLproj.JPG" alt="Relational model" class="modal-img" />
<figcaption class="mbc_content">
<p></p>
</figcaption>
</figure>
<figure class="mbc_container">
<p>
These projects were for a database course during my graduate studies. Learning databases were a
fundamentals course for my program.
</p>
<p>
Repositories I've used for the database course:
</p>
<ol>
<li>
<a href="https://github.com/ViLinh27/RelationalModel">
Relational Model
</a>
</li>
<li>
<a href="https://github.com/ViLinh27/SimpleSQL">
Simple SQL</a></li>
<li>
<a href="https://github.com/ViLinh27/IntermediateSQL">
Intermediate SQL</a></li>
<li>
<a href="https://github.com/ViLinh27/AdvancedSQL">
Advanced SQL</a></li>
<li>
<a href="https://github.com/ViLinh27/MoreAdvancedSQL">
More Advanced SQL</a></li>
</ol>
</figure>
<figure class="mbc_container">
<img src="/assets/code/simpeSQLcode.JPG" alt="" class="modal-img"/>
<figcaption class="mbc_content">
<p></p>
</figcaption>
</figure>
<figure class="mbc_container">
<img src="/assets/code/intermediateSQLcode.JPG" alt="" class="modal-img" />
<figcaption class="mbc_content">
<p></p>
</figcaption>
</figure>
</div>
<!--end of modalbody-->
<div class="modal-footer">
I have more SQL projects on my github linked here:
<a href="https://github.com/ViLinh27?tab=repositories&q=databases&type=&language=&sort=">CLICK</a>
</div>
<!--end of modal footer-->
</div>
<!--end of modal content-->
</div>
<!--end of modal containaer-->
<!--c# projects-->
<div class="modal" id="myModal6">
<div class="modal-content">
<div class="modal-header">
<!--<span class="close">
<i class="fa fa-window-close" aria-hidden="true"></i>
</span>-->
<h2>C#</h2>
</div>
<!--end of modal header-->
<div class="modal-body">
<div class="modal-body_itms">
<figure>
<img src="" alt="" class="modal-img" />
<figcaption class="mbc_content">
<p class="modal-body_txt">Original subject by</p>
</figcaption>
</figure>
</div>
</div>
<!--end of modalbody-->
<div class="modal-footer">Modal footer</div>
<!--end of modal footer-->
</div>
<!--end of modal content-->
</div>
<!--end of modal
containaer-->
<!--time to talk-->
<!-- <div class="modal" id="myModal7">
<div class="modal-content">
<div class="modal-header">
<h2>Time To Talk</h2>
<h3>A short visual novel made in the Renpy game engine.</h3>
</div>
<div class="modal-body">
<figure class="mbc_container">
<img src="https://img.itch.zone/aW1hZ2UvNzI2Nzk0LzQwMzczNTMuanBn/original/Vs8uti.jpg" alt="time to talk"
class="modal-img" />
<figcaption class="mbc_content">
Game Screenshot
</figcaption>
<span class="mbc_content-hover">
<p class="">Game Screenshot</p>
</span>
</figure>
<figure class="mbc_container">
<img src="https://img.itch.zone/aW1hZ2UvNzI2Nzk0LzQwMzczNTQuanBn/original/Mcwm%2Fj.jpg" alt="time to talk"
class="modal-img" />
<figcaption class="mbc_content">
Game Screenshot
</figcaption>
<span class="mbc_content-hover">
<p class="">Game Screenshot</p>
</span>
</figure>
<figure class="mbc_container">
<img src="https://img.itch.zone/aW1hZ2UvNzI2Nzk0LzQwMzczNTUuanBn/original/3GrWrY.jpg" alt="time to talk"
class="modal-img" />
<figcaption class="mbc_content">
Game Screenshot
</figcaption>
<span class="mbc_content-hover">
<p class="">Game Screenshot</p>
</span>
</figure>
<figure class="mbc_container">
<p>My sister is a big visual novel fan, and told me about the renpy game engine. I've
only played a few visual novel games though.</p>
</figure>
</div>
<div class="modal-footer">
<p>More details and a downloadable version of the game can be seen on my itchio page
<a href="https://linh-is-tibia.itch.io/time-to-talk">here</a>.
</p>
</div>
</div>
</div> -->
<!--end of modal container-->
<!-- cartridge collector-->
<!-- <div class="modal" id="myModal8">
<div class="modal-content">
<div class="modal-header">
<h2>Cartrdige Collector</h2>
<h3>A short platformer for a chill game jam.</h3>
</div>
<div class="modal-body">
<figure class="mbc_container">
<img src="" alt="cartridge collector" class="modal-img" />
<figcaption class="mbc_content">
Game Screenshot
</figcaption>