-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
2751 lines (2570 loc) · 194 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
<!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="A creative coding ADDICT">
<meta name="author" content="Mohsin Khan">
<title>Mohsin Khan | Portfolio</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<!-- Custom fonts for this theme -->
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<!-- Theme CSS -->
<link href="css/freelancer.css" rel="stylesheet">
</head>
<body id="page-top">
<!-- Navigation -->
<nav class="navbar navbar-expand-lg bg-secondary text-uppercase fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="#page-top">Mohsin Khan</a>
<button class="navbar-toggler navbar-toggler-right text-uppercase font-weight-bold bg-primary text-white rounded" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
Menu
<i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item mx-0 mx-lg-1">
<a class="nav-link py-3 px-0 px-lg-3 rounded js-scroll-trigger" href="#portfolio">Portfolio</a>
</li>
<li class="nav-item mx-0 mx-lg-1">
<a class="nav-link py-3 px-0 px-lg-3 rounded js-scroll-trigger" href="#about">About</a>
</li>
<li class="nav-item mx-0 mx-lg-1">
<a class="nav-link py-3 px-0 px-lg-3 rounded js-scroll-trigger" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Masthead -->
<header class="masthead bg-primary text-white text-center">
<div class="container d-flex align-items-center flex-column">
<!-- Masthead Avatar Image -->
<!--<img class="masthead-avatar mb-5" src="img/avataaars.svg" alt="">-->
<!-- Masthead Heading -->
<h1 class="masthead-heading <!--text-uppercase--> mb-0">Mohsin Khan</h1>
<!-- Icon Divider -->
<div class="divider-custom divider-light">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon">
<i class="fas fa-star"></i>
</div>
<div class="divider-custom-line"></div>
</div>
<!-- Masthead Subheading -->
<p class="masthead-subheading font-weight-light mb-0">Game Developer - Tools Programmer</p>
<div class="divider-custom divider-light">
</div>
<!-- <a href="https://www.youracclaim.com/badges/35ee128e-a059-42f3-84da-2f9c64f313df" target="_blank">
<img class="masthead-avatar" src="img/Cert.png" alt=""> -->
</a>
</div>
</header>
<!-- Portfolio Section -->
<section class="page-section portfolio" id="portfolio">
<div class="container">
<!-- Portfolio Section Heading -->
<h2 class="page-section-heading text-center text-uppercase text-secondary mb-0">Portfolio</h2>
<!-- Icon Divider -->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon">
<i class="fas fa-star"></i>
</div>
<div class="divider-custom-line"></div>
</div>
<!-- tabs -->
<div class="row justify-content-md-center">
<div class="col-xs-10 col-md-10 col-xl-10">
<ul class="nav nav-tabs nav-pills nav-fill " role="tablist">
<li class="nav-item"> <a class="active nav-link" id="nav-professional-tab" data-toggle="tab" href="#nav-professional" role="tab" aria-controls="nav-professional" aria-selected="true">Professional Projects</a> </li>
<li class="nav-item"> <a class="nav-link" id="nav-tools-tab" data-toggle="tab" href="#nav-tools" role="tab" aria-controls="nav-tools" aria-selected="false">Tools, Assets & Libraries</a> </li>
<li class="nav-item"> <a class="nav-link" id="nav-indie-tab" data-toggle="tab" href="#nav-indie" role="tab" aria-controls="nav-indie" aria-selected="false">Indie Games</a> </li>
<li class="nav-item"> <a class="nav-link" id="nav-freelance-tab" data-toggle="tab" href="#nav-freelance" role="tab" aria-controls="nav-freelance" aria-selected="false">Freelance Projects</a> </li>
<!-- <li class="nav-item"> <a class="nav-link" id="nav-articles-tab" data-toggle="tab" href="#nav-articles" role="tab" aria-controls="nav-articles" aria-selected="false">Articles & Tutorials</a> </li> -->
</ul>
<div class="tab-content py-4 px-3 px-sm-0" id="nav-tabContent">
<div class="tab-pane fade" id="nav-tools" role="tabpanel" aria-labelledby="nav-tools-tab">
<div class="row">
<!-- Portfolio Item 1 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class=" bg-white rounded shadow-sm">
<img src="img/ToolsPortfolio/PrefabManager-1280.png" alt="" class="img-fluid card-img-top">
<div class="p-3 d-block">
<h5> <a class="text-dark d-block text-truncate stretched-link" data-toggle="modal" href="#modalPrefabManager">Prefab Manager</a></h5>
<p class="d-block text-truncate small text-muted mb-0">Unity asset that helps you to pool objects</p>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Unity</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Pooling</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Editor Extension</div>
</div>
</div>
</div>
<!-- Portfolio Item 2 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class=" bg-white rounded shadow-sm">
<img src="img/ToolsPortfolio/UISpriteManager-1200.png" alt="" class="img-fluid card-img-top">
<div class="p-3 d-block">
<h5> <a class="text-dark d-block text-truncate stretched-link"
data-toggle="modal" href="#modalUISpriteManager">UI Sprite Manager</a></h5>
<p class="d-block text-truncate small text-muted mb-0">Unity asset that helps to reskin game easily</p>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Unity</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">UI</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Sprite</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Editor Extension</div>
</div>
</div>
</div>
<!-- Portfolio Item 3 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class=" bg-white rounded shadow-sm">
<img src="img/ToolsPortfolio/FlexGridLayout-1200.jpg" alt="" class="img-fluid card-img-top">
<div class="p-3 d-block">
<h5>
<a class="text-dark d-block text-truncate stretched-link"
data-toggle="modal" href="#modalFlexGridLayout">Flexible Grid Layout</a>
</h5>
<p class="d-block text-truncate small text-muted mb-0">Unity asset that helps you create flexible grid layout</p>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Unity</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">UI</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Layout</div>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="nav-indie" role="tabpanel" aria-labelledby="nav-indie-tab">
<div class="row">
<!-- Portfolio Item 1 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class=" bg-white rounded shadow-sm">
<img src="img/portfolio/GGJ2019-WannaHome.png" alt="" class="img-fluid card-img-top">
<div class="p-3 d-block">
<h5> <a class="text-dark d-block text-truncate stretched-link" data-toggle="modal" href="#modalWannaHome">Wanna Home</a></h5>
<p class="d-block text-truncate small text-muted mb-0">GGJ2019 HK game</p>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Unity</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">iOS</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Android</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">2D</div>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="nav-freelance" role="tabpanel" aria-labelledby="nav-freelance-tab">
<div class="row">
<!-- Portfolio Item 1 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class=" bg-white rounded shadow-sm">
<img src="img/Extra/noPhoto.png" alt="" class="img-fluid card-img-top">
<div class="p-3 d-block">
<h5> <a class="text-dark d-block text-truncate stretched-link" data-toggle="modal" href="#modalTeachingGame">Teaching Game</a></h5>
<p class="d-block text-truncate small text-muted mb-0">Educational game for teachers to engage students</p>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Unity</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">2D</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">PC</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Educational</div>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade show active" id="nav-professional" role="tabpanel" aria-labelledby="nav-professional-tab">
<h5 class=" text-dark p-4">Projects in HKSYU (TLDO): <span class=" text-dark p-4 h6">(Some projects are)</span></h5>
<div class="row">
<!-- Portfolio Item 1 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class=" bg-white rounded shadow-sm">
<img src="img/portfolio/Growledge Farm-00.jpg" alt="" class="img-fluid card-img-top">
<div class="p-3 d-block">
<h5> <a class="text-dark d-block text-truncate stretched-link" data-toggle="modal" href="#modalGrowledgeFarm">Growledge Farm</a></h5>
<p class="d-block text-truncate small text-muted mb-0">Educational 2D farm building game</p>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Unity</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Mobile</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">2D</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Firebase</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Multiplayer</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Node.js</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Base-Builder</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Game Balance</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Game Economy</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Education</div>
</div>
</div>
</div>
</div>
<h5 class=" text-dark p-4">Projects in HKU (TELI): <span class=" text-dark p-4 h6">(Some projects are)</span></h5>
<div class="row">
<!-- Portfolio Item 1 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class=" bg-white rounded shadow-sm">
<img src="img/portfolio/CSI-01.png" alt="" class="img-fluid card-img-top">
<div class="p-3 d-block">
<h5> <a class="text-dark d-block text-truncate stretched-link" data-toggle="modal" href="#modalCSIGame">CSI Mobile Game</a></h5>
<p class="d-block text-truncate small text-muted mb-0">The science of Crime Scene Investigation game</p>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Unity</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">AR</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">3D</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Mobile</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Education</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Multiplayer</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">GameSparks</div>
</div>
</div>
</div>
<!-- Portfolio Item 2 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class=" bg-white rounded shadow-sm">
<img src="img/portfolio/Smart Emotion-00.jpg" alt="" class="img-fluid card-img-top">
<div class="p-3 d-block">
<h5> <a class="text-dark d-block text-truncate stretched-link" data-toggle="modal" href="#modalSmartEmotion">Smart Emotion</a></h5>
<p class="d-block text-truncate small text-muted mb-0">Finding user emotions app with mini games</p>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Unity</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">iOS</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Android</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Puzzle</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">2D</div>
</div>
</div>
</div>
<!-- Portfolio Item 3 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class=" bg-white rounded shadow-sm">
<img src="img/portfolio/Smart Emotion 2-00.jpg" alt="" class="img-fluid card-img-top">
<div class="p-3 d-block">
<h5> <a class="text-dark d-block text-truncate stretched-link" data-toggle="modal" href="#modalSmartEmotion2">Smart Emotion 2</a></h5>
<p class="d-block text-truncate small text-muted mb-0">Collecting and analyzing emotions</p>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Unity</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">iOS</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Android</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">2D</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">RestfulAPI</div>
</div>
</div>
</div>
<!-- Portfolio Item 4 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class=" bg-white rounded shadow-sm">
<img src="img/portfolio/Smart Emotion 3-00.png" alt="" class="img-fluid card-img-top">
<div class="p-3 d-block">
<h5> <a class="text-dark d-block text-truncate stretched-link" data-toggle="modal" href="#modalSmartEmotion3">Smart Emotion 3</a></h5>
<p class="d-block text-truncate small text-muted mb-0">Collecting data for effective emotion management</p>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Unity</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">iOS</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Android</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">2D</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">RestfulAPI</div>
</div>
</div>
</div>
<!-- Portfolio Item 5 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class=" bg-white rounded shadow-sm">
<img src="img/portfolio/EmotionKawaiiD-00.jpg" alt="" class="img-fluid card-img-top">
<div class="p-3 d-block">
<h5> <a class="text-dark d-block text-truncate stretched-link" data-toggle="modal" href="#modalEmotionKawaiiD">Emotion Kawaii D</a></h5>
<p class="d-block text-truncate small text-muted mb-0">Emotions diary to show and analyze your emotions</p>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Unity</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">iOS</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Android</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">2D</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Firebase</div>
</div>
</div>
</div>
<!-- Portfolio Item 6 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class=" bg-white rounded shadow-sm">
<img src="img/portfolio/JC-AFC-Builder-00.png" alt="" class="img-fluid card-img-top">
<div class="p-3 d-block">
<h5> <a class="text-dark d-block text-truncate stretched-link" data-toggle="modal" href="#modalAFCBuilder">AFC Builder</a></h5>
<p class="d-block text-truncate small text-muted mb-0">Design your environment</p>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Unity</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">iOS</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Android</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">3D</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">RestfulAPI</div>
</div>
</div>
</div>
<!-- Portfolio Item 7 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class=" bg-white rounded shadow-sm">
<img src="img/portfolio/Terra Nova-00.png" alt="" class="img-fluid card-img-top">
<div class="p-3 d-block">
<h5> <a class="text-dark d-block text-truncate stretched-link" data-toggle="modal" href="#modalTerraNova">Terra Nova</a></h5>
<p class="d-block text-truncate small text-muted mb-0">Educational platform game for courses</p>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Unity</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">iOS</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Android</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">2D</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Education</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Firebase</div>
</div>
</div>
</div>
<!-- Portfolio Item 8 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class=" bg-white rounded shadow-sm">
<img src="img/portfolio/Fish Pool-01.png" alt="" class="img-fluid card-img-top">
<div class="p-3 d-block">
<h5> <a class="text-dark d-block text-truncate stretched-link" data-toggle="modal" href="#modalFishPool">Fish Pool</a></h5>
<p class="d-block text-truncate small text-muted mb-0">Fish in pool with the recorded sound</p>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Unity</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">PC</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">2D</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Casual</div>
</div>
</div>
</div>
<!-- Portfolio Item 9 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class=" bg-white rounded shadow-sm">
<img src="img/portfolio/JC-CMAC-Object Placement-0.png" alt="" class="img-fluid card-img-top">
<div class="p-3 d-block">
<h5> <a class="text-dark d-block text-truncate stretched-link" data-toggle="modal" href="#modalARObjectPlacement">AR Object Placement</a></h5>
<p class="d-block text-truncate small text-muted mb-0">Place objects in AR environment</p>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Unity</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">iOS</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Android</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">3D</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">AR</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Casual</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">RestfulAPI</div>
</div>
</div>
</div>
<!-- Portfolio Item 10 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class=" bg-white rounded shadow-sm">
<img src="img/portfolio/Wellnuts-00.jpg" alt="" class="img-fluid card-img-top">
<div class="p-3 d-block">
<h5> <a class="text-dark d-block text-truncate stretched-link" data-toggle="modal" href="#modalWellnuts">Wellnuts</a></h5>
<p class="d-block text-truncate small text-muted mb-0">Medical app which suggest Tests on your answers</p>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Unity</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">iOS</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Android</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Health</div>
</div>
</div>
</div>
</div>
<h5 class=" text-dark p-4">Projects in FRAG Games: <span class=" text-dark p-4 h6">(Some projects are)</span></h5>
<div class="row">
<!-- Portfolio Item 1 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class=" bg-white rounded shadow-sm">
<img src="img/portfolio/Edcoda-01.png" alt="" class="img-fluid card-img-top">
<div class="p-3 d-block">
<h5> <a class="text-dark d-block text-truncate stretched-link" data-toggle="modal" href="#modalCodaQuest">Coda Quest</a></h5>
<p class="d-block text-truncate small text-muted mb-0">Educational 3D real-time multiplayer server synced PC game</p>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Unity</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">PC</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Multiplayer</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Education</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">AWS</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">uLink</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">RPG</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">MMO</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">3D</div>
</div>
</div>
</div>
<!-- Portfolio Item 2 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class=" bg-white rounded shadow-sm">
<img src="img/portfolio/Ganja Goons-01.png" alt="" class="img-fluid card-img-top">
<div class="p-3 d-block">
<h5> <a class="text-dark d-block text-truncate stretched-link" data-toggle="modal" href="#modalGanjaGoons">Ganja Goons</a></h5>
<p class="d-block text-truncate small text-muted mb-0">3D Base building isometric strategy game</p>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Unity</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">iOS</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Android</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">AWS</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">3D</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Base-Builder</div>
</div>
</div>
</div>
<!-- Portfolio Item 3 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class=" bg-white rounded shadow-sm">
<img src="img/portfolio/Sorcerer’s Ring-01.jpeg" alt="" class="img-fluid card-img-top">
<div class="p-3 d-block">
<h5> <a class="text-dark d-block text-truncate stretched-link" data-toggle="modal" href="#modalSorcerersRing">Sorcerer’s Ring</a></h5>
<p class="d-block text-truncate small text-muted mb-0">Complex turn-based 3D mobile game</p>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Unity</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">iOS</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Android</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">AWS</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">3D</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">RPG</div>
</div>
</div>
</div>
</div>
<h5 class=" text-dark p-4">Projects in Sunstar Technology Group LLC: <span class=" text-dark p-4 h6">(Some projects are)</span></h5>
<div class="row">
<!-- Portfolio Item 1 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class=" bg-white rounded shadow-sm">
<img src="img/portfolio/Death Shooter Commando 3D-05.png" alt="" class="img-fluid card-img-top">
<div class="p-3 d-block">
<h5> <a class="text-dark d-block text-truncate stretched-link" data-toggle="modal" href="#modalDeathShooterCommando">Death Shooter Commando</a></h5>
<p class="d-block text-truncate small text-muted mb-0">Commando shooting 3D game</p>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Unity</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">iOS</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Android</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">3D</div>
</div>
</div>
</div>
<!-- Portfolio Item 2 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class=" bg-white rounded shadow-sm">
<img src="img/portfolio/Lion Hunting Deer Free-01.png" alt="" class="img-fluid card-img-top">
<div class="p-3 d-block">
<h5> <a class="text-dark d-block text-truncate stretched-link" data-toggle="modal" href="#modalLionHuntingDeer">Lion Hunting Deer</a></h5>
<p class="d-block text-truncate small text-muted mb-0">Kill lion before it hunts deer</p>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Unity</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">iOS</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Android</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">3D</div>
</div>
</div>
</div>
<!-- Portfolio Item 3 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class=" bg-white rounded shadow-sm">
<img src="img/portfolio/Save Bananas-01.png" alt="" class="img-fluid card-img-top">
<div class="p-3 d-block">
<h5> <a class="text-dark d-block text-truncate stretched-link" data-toggle="modal" href="#modalSaveBanana">Save Banana</a></h5>
<p class="d-block text-truncate small text-muted mb-0">Throw coconuts on monkeys to save bananas</p>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Unity</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">iOS</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Android</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">3D</div>
</div>
</div>
</div>
</div>
<h5 class=" text-dark p-4">Projects in Jolta Technology: <span class=" text-dark p-4 h6">(Some projects are)</span></h5>
<div class="row">
<!-- Portfolio Item 1 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class=" bg-white rounded shadow-sm">
<img src="img/portfolio/Truck Cargo Off-Road 3D-01.png" alt="" class="img-fluid card-img-top">
<div class="p-3 d-block">
<h5> <a class="text-dark d-block text-truncate stretched-link" data-toggle="modal" href="#modalTruckCargoOffRoad">Truck Cargo Off-Road</a></h5>
<p class="d-block text-truncate small text-muted mb-0">Save cargo on truck driving over off-road</p>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Unity</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">iOS</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Android</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">3D</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Game Balance</div>
</div>
</div>
</div>
<!-- Portfolio Item 2 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class=" bg-white rounded shadow-sm">
<img src="img/portfolio/Temple Gems Treasure-00.jpeg" alt="" class="img-fluid card-img-top">
<div class="p-3 d-block">
<h5> <a class="text-dark d-block text-truncate stretched-link" data-toggle="modal" href="#modalTempleGemsTreasure">Temple Gems Treasure</a></h5>
<p class="d-block text-truncate small text-muted mb-0">Match3 game with 120 unique puzzles</p>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Cocos2D</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">iOS</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Puzzle</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Casual</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Game Balance</div>
</div>
</div>
</div>
<!-- Portfolio Item 3 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class=" bg-white rounded shadow-sm">
<img src="img/portfolio/Bubble Shoot Deluxe-00.jpeg" alt="" class="img-fluid card-img-top">
<div class="p-3 d-block">
<h5> <a class="text-dark d-block text-truncate stretched-link" data-toggle="modal" href="#modalBubbleShooter">Bubble Shooter</a></h5>
<p class="d-block text-truncate small text-muted mb-0">Shoot same color bubbles to pop</p>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Cocos2D</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">iOS</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Puzzle</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Casual</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Game Balance</div>
</div>
</div>
</div>
<!-- Portfolio Item 4 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class=" bg-white rounded shadow-sm">
<img src="img/portfolio/Bubble Breaking 0.jpeg" alt="" class="img-fluid card-img-top">
<div class="p-3 d-block">
<h5> <a class="text-dark d-block text-truncate stretched-link" data-toggle="modal" href="#modalBubbleBreaker">Bubble Breaker</a></h5>
<p class="d-block text-truncate small text-muted mb-0">Pop same color bubbles</p>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Cocos2D</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">iOS</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Casual</div>
</div>
</div>
</div>
<!-- Portfolio Item 5 -->
<div class="col-lg-4 col-md-6 mb-4">
<div class=" bg-white rounded shadow-sm">
<img src="img/portfolio/Ninja Rail Run-00.jpeg" alt="" class="img-fluid card-img-top">
<div class="p-3 d-block">
<h5> <a class="text-dark d-block text-truncate stretched-link" data-toggle="modal" href="#modalNeonRailRunner">Neon Rail Runner</a></h5>
<p class="d-block text-truncate small text-muted mb-0">Ninja runing have to jump from the obstacles</p>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Cocos2D</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">iOS</div>
<div class="badge badge-primary px-2 rounded-pill font-weight-normal">Casual</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /.row -->
</div>
</section>
<!-- About Section -->
<section class="page-section bg-primary text-white mb-0" id="about">
<div class="container">
<!-- About Section Heading -->
<h2 class="page-section-heading text-center text-uppercase text-white">About Me</h2>
<!-- Icon Divider -->
<div class="divider-custom divider-light">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon">
<i class="fas fa-star"></i>
</div>
<div class="divider-custom-line"></div>
</div>
<!-- About Section Content -->
<div class="row">
<div class="col-lg-4 ml-auto">
<!--<p class="lead">Freelancer is a free bootstrap theme created by Start Bootstrap. The download includes the complete source files including HTML, CSS, and JavaScript as well as optional SASS stylesheets for easy customization.</p>-->
<p class="lead">
• Eager to learn, good debugging, problem solving and optimizing skills<br />
• Take issues and complexity as challenge with “Can do” attitude<br />
• A game enthusiast, passionate about creating astonishing visuals and high fidelity games<br />
• A professional game developer and game tools programmer</p>
</div>
<div class="col-lg-4 mr-auto">
<!--<p class="lead">You can create your own custom avatar for the masthead, change the icon in the dividers, and add your email address to the contact form to make it fully functional!</p>-->
<p class="lead">
• Fast learner, love research and exploring new technologies<br />
• Effective team player with good communication and interpersonal skills<br />
• Have good knowledge in Game Development and Game Balance<br />
• Highly skilled in Unity, C#, and .NET</p>
</div>
</div>
<!-- About Section Button -->
<div class="text-center mt-4">
<a class="btn btn-xl btn-outline-light" href="Mohsin Khan CV - Online.pdf" target="_blank" download>
<i class="fas fa-download mr-2"></i>
Download my CV!
</a>
</div>
</div>
</section>
<!-- Contact Section -->
<section class="page-section" id="contact">
<div class="container">
<!-- Contact Section Heading -->
<h2 class="page-section-heading text-center text-uppercase text-secondary mb-0">Contact Me</h2>
<!-- Icon Divider -->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon">
<i class="fas fa-star"></i>
</div>
<div class="divider-custom-line"></div>
</div>
<!-- Contact Section Form -->
<div class="row">
<div class="col-lg-8 mx-auto">
<!-- To configure the contact form email address, go to mail/contact_me.php and update the email address in the PHP file on line 19. -->
<form name="sentMessage" id="contactForm" novalidate="novalidate">
<div class="control-group">
<div class="form-group floating-label-form-group controls mb-0 pb-2">
<label>Name</label>
<input class="form-control" id="name" type="text" placeholder="Name" required="required" data-validation-required-message="Please enter your name.">
<p class="help-block text-danger"></p>
</div>
</div>
<div class="control-group">
<div class="form-group floating-label-form-group controls mb-0 pb-2">
<label>Email Address</label>
<input class="form-control" id="email" type="email" placeholder="Email Address" required="required" data-validation-required-message="Please enter your email address.">
<p class="help-block text-danger"></p>
</div>
</div>
<div class="control-group">
<div class="form-group floating-label-form-group controls mb-0 pb-2">
<label>Phone Number</label>
<input class="form-control" id="phone" type="tel" placeholder="Phone Number (with country code)" required="required" data-validation-required-message="Please enter your phone number.">
<p class="help-block text-danger"></p>
</div>
</div>
<div class="control-group">
<div class="form-group floating-label-form-group controls mb-0 pb-2">
<label>Message</label>
<textarea class="form-control" id="message" rows="5" placeholder="Message" required="required" data-validation-required-message="Please enter a message."></textarea>
<p class="help-block text-danger"></p>
</div>
</div>
<br>
<div id="success"></div>
<div class="form-group">
<button type="submit" class="btn btn-primary btn-xl" id="sendMessageButton">Send</button>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer text-center">
<div class="container">
<div class="row">
<!-- Footer Location -->
<!--<div class="col-lg-4 mb-5 mb-lg-0">
<h4 class="text-uppercase mb-4">Location</h4>
<p class="lead mb-0">2215 John Daniel Drive
<br>Clark, MO 65243</p>
</div>-->
<!-- Footer Social Icons -->
<div class="col-lg-12 mb-5 mb-lg-0">
<h4 class="text-uppercase mb-4">Around the Web</h4>
<a class="btn btn-outline-light btn-social mx-1" href="https://github.com/mohsinkhan26/" target="_blank">
<i class="fab fa-fw fa-github"></i>
</a>
<!--<a class="btn btn-outline-light btn-social mx-1" href="https://bitbucket.org/mohsinkhan26/" target="_blank">
<i class="fab fa-fw fa-bitbucket"></i>
</a>-->
<a class="btn btn-outline-light btn-social mx-1" href="https://assetstore.unity.com/publishers/28971" target="_blank">
<!--<i class="fab fa-itch-io"></i>-->
<i class="fab fa-unity"></i>
</a>
<a class="btn btn-outline-light btn-social mx-1" href="http://pk.linkedin.com/in/mohsinkhan26/" target="_blank">
<i class="fab fa-fw fa-linkedin-in"></i>
</a>
<a class="btn btn-outline-light btn-social mx-1" href="http://angel.co/mohsinkhan/" target="_blank">
<i class="fab fa-angellist"></i>
</a>
<a class="btn btn-outline-light btn-social mx-1" href="http://cslearners.blogspot.com/" target="_blank">
<i class="fab fa-blogger"></i>
</a>
<!-- <a class="btn btn-outline-light btn-social mx-1" href="https://medium.com/@abdulla.aldandarawy" target="_blank">
<i class="fab fa-fw fa-medium-m"></i>
</a>
<a class="btn btn-outline-light btn-social mx-1" href="https://www.youtube.com/channel/UCljLOk2vVXFNj4GWjuEfFJQ" target="_blank">
<i class="fab fa-fw fa-youtube"></i>
</a> -->
<a class="btn btn-outline-light btn-social mx-1" href="https://t.me/abc786786786" target="_blank">
<i class="fab fa-fw fa-telegram-plane"></i>
</a>
<a class="btn btn-outline-light btn-social mx-1" href="https://api.whatsapp.com/send?phone=85294780874&text=Hi,%20Checked%20your%20portfolio,%20so%20contacting%20you" target="_blank">
<i class="fab fa-fw fa-whatsapp"></i>
</a>
<a class="btn btn-outline-light btn-social mx-1" href="https://goo.gl/Ibplz4" target="_blank">
<i class="fas fa-globe"></i>
</a>
<i class="fas fa-fw fa-at"></i>
</a>
</div>
<!-- Footer About Text -->
<!--<div class="col-lg-4">
<h4 class="text-uppercase mb-4">About Freelancer</h4>
<p class="lead mb-0">Freelance is a free to use, MIT licensed Bootstrap theme created by
<a href="http://startbootstrap.com">Start Bootstrap</a>.</p>
</div>-->
</div>
</div>
</footer>
<!-- Copyright Section -->
<section class="copyright py-4 text-center text-white">
<div class="container">
<small>Copyright © MohsinKhan26.github.io</small>
</div>
</section>
<!-- Scroll to Top Button (Only visible on small and extra-small screen sizes) -->
<div class="scroll-to-top d-lg-none position-fixed ">
<a class="js-scroll-trigger d-block text-center text-white rounded" href="#page-top">
<i class="fa fa-chevron-up"></i>
</a>
</div>
<!-- Portfolio Modals -->
<!-- Portfolio Modal Growledge Farm -->
<div class="portfolio-modal modal fade" id="modalGrowledgeFarm" tabindex="-1" role="dialog" aria-labelledby="modalGrowledgeFarmLabel" aria-hidden="true">
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">
<i class="fas fa-times"></i>
</span>
</button>
<div class="modal-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title -->
<h2 class="portfolio-modal-title text-secondary text-uppercase mb-0">Growledge Farm</h2>
<!-- Icon Divider -->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon">
<i class="fas fa-star"></i>
</div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Images -->
<div class='row mb-5'>
<div id="gallery-carousel-growledgefarm" class="carousel slide " data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#gallery-carousel-growledgefarm" data-slide-to="0" class="active"></li>
<li data-target="#gallery-carousel-growledgefarm" data-slide-to="1"></li>
<li data-target="#gallery-carousel-growledgefarm" data-slide-to="2"></li>
<li data-target="#gallery-carousel-growledgefarm" data-slide-to="3"></li>
<li data-target="#gallery-carousel-growledgefarm" data-slide-to="4"></li>
<li data-target="#gallery-carousel-growledgefarm" data-slide-to="5"></li>
<li data-target="#gallery-carousel-growledgefarm" data-slide-to="6"></li>
<li data-target="#gallery-carousel-growledgefarm" data-slide-to="7"></li>
<li data-target="#gallery-carousel-growledgefarm" data-slide-to="8"></li>
<li data-target="#gallery-carousel-growledgefarm" data-slide-to="9"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="img-fluid rounded" src="img/portfolio/Growledge Farm-01.jpg" alt="Second slide">
</div>
<div class="carousel-item">
<img class="img-fluid rounded" src="img/portfolio/Growledge Farm-02.jpg" alt="Third slide">
</div>
<div class="carousel-item">
<img class="img-fluid rounded" src="img/portfolio/Growledge Farm-03.jpg" alt="Third slide">
</div>
<div class="carousel-item">
<img class="img-fluid rounded" src="img/portfolio/Growledge Farm-05.jpg" alt="Third slide">
</div>
<div class="carousel-item">
<img class="img-fluid rounded" src="img/portfolio/Growledge Farm-07.jpg" alt="Third slide">
</div>
<div class="carousel-item">
<img class="img-fluid rounded" src="img/portfolio/Growledge Farm-09.jpg" alt="Third slide">
</div>
<div class="carousel-item">
<img class="img-fluid rounded" src="img/portfolio/Growledge Farm-10.jpg" alt="Third slide">
</div>
<div class="carousel-item">
<img class="img-fluid rounded" src="img/portfolio/Growledge Farm-11.png" alt="Third slide">
</div>
<div class="carousel-item">
<img class="img-fluid rounded" src="img/portfolio/Growledge Farm-12.png" alt="Third slide">
</div>
<div class="carousel-item">
<img class="img-fluid rounded" src="img/portfolio/Growledge Farm-13.png" alt="Third slide">
</div>
</div>
<a data-slide="prev" href="#gallery-carousel-growledgefarm" class="carousel-control-prev"><span class="carousel-control-prev-icon"></span></a>
<a data-slide="next" href="#gallery-carousel-growledgefarm" class="carousel-control-next"><span class="carousel-control-next-icon"></span></a>
</div>
</div>
<!-- Portfolio Modal - Text -->
<p class="mb-5">A general mobile Educational game designed for the <b><i>any course and any institute</i></b> in HKSYU, in which students need to compete to occupy larger portion of the expanding land to stay on top of the scoreboard. Students have to answer questions added by their teacher of the course to occupy one square of land. Admin, Teacher and teacher assistants can enter the questions for the course using mobile and by selecting their role.</p>
<p class="mb-5">Developed from scratch front-end and backend using Firebase. Even designed (not art) and balanced the economy of the game.</p>
<a href="https://apps.apple.com/app/growledge-farm/id6503681263" target="_blank"><img class="img-fluid rounded mb-5" src="img/Extra/footer_appstore.png" alt=""></a>
<a href="https://play.google.com/store/apps/details?id=hk.hksyu.edu.grow.ledge.farm" target="_blank"><img class="img-fluid rounded mb-5" src="img/Extra/footer_googleplay.png" alt=""></a>
<br />
<button class="btn btn-primary" href="#" data-dismiss="modal">
<i class="fas fa-times fa-fw"></i>
Close Window
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal CSI Game -->
<div class="portfolio-modal modal fade" id="modalCSIGame" tabindex="-1" role="dialog" aria-labelledby="modalCSIGameLabel" aria-hidden="true">
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">
<i class="fas fa-times"></i>
</span>
</button>
<div class="modal-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title -->
<h2 class="portfolio-modal-title text-secondary text-uppercase mb-0">CSI Mobile Game</h2>
<!-- Icon Divider -->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon">
<i class="fas fa-star"></i>
</div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Images -->
<div class='row mb-5'>
<div id="gallery-carousel-csi" class="carousel slide " data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#gallery-carousel-csi" data-slide-to="0" class="active"></li>
<li data-target="#gallery-carousel-csi" data-slide-to="1"></li>
<li data-target="#gallery-carousel-csi" data-slide-to="2"></li>
<li data-target="#gallery-carousel-csi" data-slide-to="3"></li>
<li data-target="#gallery-carousel-csi" data-slide-to="4"></li>
<li data-target="#gallery-carousel-csi" data-slide-to="5"></li>
<li data-target="#gallery-carousel-csi" data-slide-to="6"></li>
<li data-target="#gallery-carousel-csi" data-slide-to="7"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="img-fluid rounded" src="img/portfolio/CSI-01.png" alt="Second slide">
</div>
<div class="carousel-item">
<img class="img-fluid rounded" src="img/portfolio/CSI-02.png" alt="Third slide">
</div>
<div class="carousel-item">
<img class="img-fluid rounded" src="img/portfolio/CSI-03.png" alt="Third slide">
</div>
<div class="carousel-item">
<img class="img-fluid rounded" src="img/portfolio/CSI-11.png" alt="Third slide">
</div>
<div class="carousel-item">
<img class="img-fluid rounded" src="img/portfolio/CSI-12.png" alt="Third slide">
</div>
<div class="carousel-item">
<img class="img-fluid rounded" src="img/portfolio/CSI-13.png" alt="Third slide">
</div>
<div class="carousel-item">
<img class="img-fluid rounded" src="img/portfolio/CSI-14.png" alt="Third slide">
</div>
<div class="carousel-item">
<img class="img-fluid rounded" src="img/portfolio/CSI-15.png" alt="Third slide">
</div>
</div>
<a data-slide="prev" href="#gallery-carousel-csi" class="carousel-control-prev"><span class="carousel-control-prev-icon"></span></a>
<a data-slide="next" href="#gallery-carousel-csi" class="carousel-control-next"><span class="carousel-control-next-icon"></span></a>
</div>
</div>
<!-- Portfolio Modal - Text -->
<p class="mb-5">A mobile game designed for the <b><i>Science of Crime Scene Investigation course</i></b> in HKU, in which students need to collaborate together to solve real life case. In the game students need to find some evidence by navigating in the 3D scene, doing autopsy and collecting some clues from talking with many AI chatbots that represent people who are close to the victim and technical experts (e.g DNA, Fiber and IT)</p>
<div class="embed-responsive embed-responsive-16by9 mb-5">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/oGLzwwkZWBk"></iframe>
</div>
<button class="btn btn-primary" href="#" data-dismiss="modal">
<i class="fas fa-times fa-fw"></i>
Close Window
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal Smart Emotion Game -->
<div class="portfolio-modal modal fade" id="modalSmartEmotion" tabindex="-1" role="dialog" aria-labelledby="modalSmartEmotionLabel" aria-hidden="true">
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">
<i class="fas fa-times"></i>
</span>
</button>
<div class="modal-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title -->
<h2 class="portfolio-modal-title text-secondary text-uppercase mb-0">Smart Emotion</h2>
<!-- Icon Divider -->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon">
<i class="fas fa-star"></i>
</div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Images -->
<div class='row mb-5'>
<div id="gallery-carousel-smartemotion" class="carousel slide " data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#gallery-carousel-smartemotion" data-slide-to="0" class="active"></li>
<li data-target="#gallery-carousel-smartemotion" data-slide-to="1"></li>
<li data-target="#gallery-carousel-smartemotion" data-slide-to="2"></li>
<li data-target="#gallery-carousel-smartemotion" data-slide-to="3"></li>
<li data-target="#gallery-carousel-smartemotion" data-slide-to="4"></li>
<li data-target="#gallery-carousel-smartemotion" data-slide-to="5"></li>
<li data-target="#gallery-carousel-smartemotion" data-slide-to="6"></li>
<li data-target="#gallery-carousel-smartemotion" data-slide-to="7"></li>
<li data-target="#gallery-carousel-smartemotion" data-slide-to="8"></li>
<li data-target="#gallery-carousel-smartemotion" data-slide-to="9"></li>
<li data-target="#gallery-carousel-smartemotion" data-slide-to="10"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="img-fluid rounded" src="img/portfolio/Smart Emotion-01.png" alt="Second slide">
</div>
<div class="carousel-item">
<img class="img-fluid rounded" src="img/portfolio/Smart Emotion-02.png" alt="Third slide">
</div>
<div class="carousel-item">
<img class="img-fluid rounded" src="img/portfolio/Smart Emotion-04.png" alt="Third slide">
</div>
<div class="carousel-item">
<img class="img-fluid rounded" src="img/portfolio/Smart Emotion-05.png" alt="Third slide">
</div>
<div class="carousel-item">
<img class="img-fluid rounded" src="img/portfolio/Smart Emotion-06.png" alt="Third slide">
</div>
<div class="carousel-item">
<img class="img-fluid rounded" src="img/portfolio/Smart Emotion-08.png" alt="Third slide">
</div>
<div class="carousel-item">
<img class="img-fluid rounded" src="img/portfolio/Smart Emotion-09.png" alt="Third slide">
</div>
<div class="carousel-item">
<img class="img-fluid rounded" src="img/portfolio/Smart Emotion-10.png" alt="Third slide">
</div>
<div class="carousel-item">
<img class="img-fluid rounded" src="img/portfolio/Smart Emotion-11.png" alt="Third slide">