-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
775 lines (712 loc) · 37.9 KB
/
Copy pathindex.html
File metadata and controls
775 lines (712 loc) · 37.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
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
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Thinh Ngo</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta name="description" content="Thinh Ngo Personal Page" />
<meta name="keywords" content="reactjs, aurelia, angular2, software, frontend, fullstack, .net developer, c#" />
<meta name="author" content="ThinhNgo" />
<link rel="shortcut icon" href="favicon.jpeg">
<link rel="stylesheet" href="css/bootstrap.css" type="text/css">
<link rel="stylesheet" href="css/normalize.css" type="text/css">
<link rel="stylesheet" href="css/animate.css" type="text/css">
<link rel="stylesheet" href="css/transition-animations.css" type="text/css">
<link rel="stylesheet" href="css/jquery.mCustomScrollbar.min.css" type="text/css">
<link rel="stylesheet" href="css/owl.carousel.css" type="text/css">
<link rel="stylesheet" href="css/magnific-popup.css" type="text/css">
<link rel="stylesheet" href="css/main.css" type="text/css">
<script src="js/jquery-2.1.3.min.js"></script>
<script src="js/modernizr.custom.js"></script>
</head>
<body>
<!-- Loading animation -->
<div class="preloader">
<div class="preloader-animation">
<div class="dot1"></div>
<div class="dot2"></div>
</div>
</div>
<!-- /Loading animation -->
<div id="page" class="page">
<!-- Header -->
<header id="site_header" class="header mobile-menu-hide header-color-light">
<div class="my-photo tilt-effect">
<img src="images/main_photo1.jpg" alt="image">
</div>
<div class="site-title-block">
<h1 class="site-title">Thinh Ngo</h1>
</div>
<!-- Navigation -->
<div class="site-nav">
<!-- Main menu -->
<ul id="nav" class="site-main-menu">
<li>
<a class="pt-trigger" href="#home" data-animation="21"><i class="menu-icon pe-7s-icon pe-7s-home"></i>Home</a><!-- href value = data-id without # of .pt-page. -->
</li>
<li>
<a class="pt-trigger" href="#about_me" data-animation="17"><i class="menu-icon pe-7s-icon pe-7s-user"></i>About me</a>
</li>
<li>
<a class="pt-trigger" href="#resume" data-animation="18"><i class="menu-icon pe-7s-icon pe-7s-id"></i>Resume</a>
</li>
<!-- <li>
<a class="pt-trigger" href="#portfolio" data-animation="19"><i class="menu-icon pe-7s-icon pe-7s-portfolio"></i>Portfolio</a>
</li> -->
</ul>
<!-- /Main menu -->
</div>
<!-- Navigation -->
</header>
<!-- /Header -->
<!-- Mobile Header -->
<div class="mobile-header mobile-visible">
<div class="mobile-logo-container">
<div class="mobile-site-title">Thinh Ngo</div>
</div>
<a class="menu-toggle mobile-visible">
<i class="fa fa-bars"></i>
</a>
</div>
<!-- /Mobile Header -->
<!-- Main Content -->
<div id="main" class="site-main">
<!-- Page changer wrapper -->
<div class="pt-wrapper" style="background-image: url(images/main_bg_light.jpg);">
<!-- Subpages -->
<div class="subpages">
<!-- Home Subpage -->
<section class="pt-page pt-page-1 section-without-bg section-paddings-0 table" data-id="home">
<div class="section-inner">
<div class="home-page-block">
<h2>Thinh Ngo</h2>
<div class="owl-carousel text-rotation">
<div class="item">
<p class="home-page-description">Fullstack Developer</p>
</div>
<div class="item">
<p class="home-page-description">Frontend Developer</p>
</div>
</div>
</div>
</div>
</section>
<!-- End of Home Subpage -->
<!-- About Me Subpage -->
<section class="pt-page pt-page-2" data-id="about_me">
<div class="border-block-top-110"></div>
<div class="section-inner">
<div class="section-title-block">
<div class="section-title-wrapper clearfix">
<h2 class="section-title">About Me</h2>
<h5 class="section-description">Assertive, Outspoken, Progressive</h5>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-md-6 col-lg-4 subpage-block">
<div class="my-photo-block tilt-effect">
<img src="images/main_photo2.jpg" alt="">
</div>
</div>
<div class="col-sm-6 col-md-6 col-lg-4">
<h3>I am Fullstack Developer</h3>
<p>I think that I’m a person who is assertive, outspoken and progressive. I always set my goals and try my best to get it.</p>
<p>With other people, I’m friendly, funny and sociable. I love travelling and exploring new culture.</p>
<p>I love learning new technology and always doing the best I can on any project.</p>
<p>The maxim: “Only the people who dare to fail, will achieve big success” (John F.Kennedy)</p>
</div>
<div class="col-sm-6 col-md-6 col-lg-4 subpage-block">
<ul class="info-list">
<li><span class="title">Age</span><span class="value">25</span></li>
<li><span class="title">Residence</span><span class="value">VietNam</span></li>
<li><span class="title">Address</span><span class="value">378/16 ThongNhat, GoVap, HoChiMinh</span></li>
<li><span class="title">e-mail</span><span class="value"><a href="mailto:thinhducngo.hpc@gmail.com">thinhducngo.hpc@gmail.com</a></span></li>
<li><span class="title">Phone</span><span class="value">+84 904 247 960</span></li>
<li><span class="title">Freelance</span><span class="value available">Available</span></li>
</ul>
<ul class="social-links">
<li><a class="tip social-button" href="https://www.linkedin.com/in/thinh-ngo-5b1024119" target="_blank" title="Linkedin"><i class="fa fa-linkedin"></i></a></li>
<li><a class="tip social-button" href="https://www.youracclaim.com/users/thinh-ngo.63d043e3" target="_blank" title="Acclaim"><i class="fa fa-angle-double-up"></i></a></li>
<li><a class="tip social-button" href="http://www.mycertprofile.com/Profile/9835123945" target="_blank" title="Microsoft Cert"><i class="fa fa-windows"></i></a></li>
<li><a class="tip social-button" href="mailto:thinhducngo.hpc@gmail.com" title="Google Mail"><i class="fa fa-envelope"></i></a></li>
<li><a style="cursor: default" class="tip social-button" title="Thinh Ngo - live:thinh.ngo_3"><i class="fa fa-skype"></i></a></li>
</ul>
</div>
</div>
<!-- Services block -->
<div class="block-title">
<h3>Services</h3>
</div>
<div class="row">
<div class="col-sm-6 col-md-3 col-md-offset-3 subpage-block">
<div class="service-block">
<div class="service-info">
<i class="service-icon pe-7s-icon pe-7s-display1"></i>
<h4>Build Web Application</h4>
<p>Experience in: Healthcare app, Practice english test (PTE) app, Managing tax app.</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-3 subpage-block">
<div class="service-block">
<div class="service-info">
<i class="service-icon pe-7s-icon pe-7s-tools"></i>
<h4>Improve/Fix Application</h4>
<p>Fix - Improve your web application.</p>
</div>
</div>
</div>
</div>
<!-- End of Services block -->
<!-- Clients block -->
<div class="block-title">
<h3>Clients</h3>
</div>
<div class="row">
<div class="col-sm-6 col-md-4 col-sm-offset-3 col-md-offset-4 subpage-block">
<div class="client-block">
<a href="https://www.facebook.com/STEPBYSTEPCORP" target="_blank" title="Stepbystep">
<img style="max-width: unset;height: 100px" src="images/clients/stepbystep.png" alt="image">
</a>
</div>
</div>
</div>
<!-- End of Clients block -->
<div class="row">
<div class="col-sm-12 col-md-12 subpage-block">
<div class="block-title">
<h3>Badges</h3>
</div>
<div class="testimonials owl-carousel">
<!-- Badge 1 -->
<div class="testimonial-item">
<!-- Badge Content -->
<div class="testimonial-content">
<div style="min-height: 275px" class="testimonial-text">
<p>"Passing Exam 480: Programming in HTML5 with JavaScript and CSS3 validates a candidate’s ability to access and secure data
as well as implement document structures, objects, and program flow."</p>
</div>
</div>
<!-- /Badge Content -->
<!-- Badge Author -->
<div class="testimonial-credits">
<!-- Picture -->
<div class="testimonial-picture">
<a href="https://www.youracclaim.com/badges/46fa2044-e96c-45ab-a6a7-667cccb37f5b" target="_blank" title="Exam 70-480">
<img src="images/badges/exam-480.png" alt="image">
</a>
</div>
<!-- /Picture -->
<!-- Badge author information -->
<div class="testimonial-author-info">
<p class="testimonial-author">Exam 70-480</p>
<p class="testimonial-firm">Programming in HTML5 with JavaScript and CSS3</p>
</div>
</div>
<!-- /Badge author information -->
</div>
<!-- End of Badge 1 -->
<!-- Badge 2 -->
<div class="testimonial-item">
<!-- Badge Content -->
<div class="testimonial-content">
<div style="min-height: 275px" class="testimonial-text">
<p>"Passing Exam 486: Developing ASP.NET MVC Web Applications validates a candidate’s ability to design the user experience,
security solutions, and application architecture as well as troubleshoot and debug web applications."</p>
</div>
</div>
<!-- /Badge Content -->
<!-- Badge Author -->
<div class="testimonial-credits">
<!-- Picture -->
<div class="testimonial-picture">
<a href="https://www.youracclaim.com/badges/8187e3f5-4065-4e40-9518-d8989bcf2455" target="_blank" title="Exam 70-486">
<img src="images/badges/exam-486.png" alt="image">
</a>
</div>
<!-- /Picture -->
<!-- Badge author information -->
<div class="testimonial-author-info">
<p class="testimonial-author">Exam 70-486</p>
<p class="testimonial-firm">Developing ASP.NET MVC Web Applications</p>
</div>
</div>
<!-- /Badge author information -->
</div>
<!-- End of Badge 2 -->
<!-- Badge 3 -->
<div class="testimonial-item">
<!-- Badge Content -->
<div class="testimonial-content">
<div style="min-height: 275px" class="testimonial-text">
<p>"Earners of the MCSA: Web Applications certification have demonstrated the skills required to implement modern web apps. They
are qualified for a position as a web developer or web administrator."</p>
</div>
</div>
<!-- /Badge Content -->
<!-- Badge Author -->
<div class="testimonial-credits">
<!-- Picture -->
<div class="testimonial-picture">
<a href="https://www.youracclaim.com/badges/b635e10f-f290-4c4e-9545-7bdd134ab3f3" target="_blank" title="MCSA Web Applications">
<img src="images/badges/mcsa-webapplications.png" alt="image">
</a>
</div>
<!-- /Picture -->
<!-- Badge author information -->
<div class="testimonial-author-info">
<p class="testimonial-author">MCSA</p>
<p class="testimonial-firm">Web Applications - Certified 2017</p>
</div>
</div>
<!-- /Badge author information -->
</div>
<!-- End of Badge 3 -->
<!-- Badge 4 -->
<div class="testimonial-item">
<!-- Badge Content -->
<div class="testimonial-content">
<div style="min-height: 275px" class="testimonial-text">
<p>"Passing Exam 487: Developing Microsoft Azure and Web Services validates the skills and knowledge necessary to develop Web
Services. Candidates demonstrate the ability to assess Azure data, manipulate and query data using Entity Framework, as well
as designing and implementing WCF and Web API-based services."</p>
</div>
</div>
<!-- /Badge Content -->
<!-- Badge Author -->
<div class="testimonial-credits">
<!-- Picture -->
<div class="testimonial-picture">
<a href="https://www.youracclaim.com/badges/d02f5a2c-b035-4389-8e54-bb30caf97603" target="_blank" title="Exam 70-487">
<img src="images/badges/exam-487.png" alt="image">
</a>
</div>
<!-- /Picture -->
<!-- Badge author information -->
<div class="testimonial-author-info">
<p class="testimonial-author">Exam 70-487</p>
<p class="testimonial-firm">Developing Microsoft Azure and Web Services</p>
</div>
</div>
<!-- /Badge author information -->
</div>
<!-- End of Badge 4 -->
<!-- Badge 5 -->
<div class="testimonial-item">
<!-- Badge Content -->
<div class="testimonial-content">
<div style="min-height: 275px" class="testimonial-text">
<p>"Earners of the MCSD: App Builder certification have demonstrated the skills required to build modern mobile and/or web applications
and services. Earning this certification qualifies an individual for a position as an application developer."</p>
</div>
</div>
<!-- /Badge Content -->
<!-- Badge Author -->
<div class="testimonial-credits">
<!-- Picture -->
<div class="testimonial-picture">
<a href="https://www.youracclaim.com/badges/866223c4-b78c-4e74-b5aa-59156426aada" target="_blank" title="MCSD App Builder">
<img src="images/badges/mcsd-appbuilder.png" alt="image">
</a>
</div>
<!-- /Picture -->
<!-- Badge author information -->
<div class="testimonial-author-info">
<p class="testimonial-author">MCSD</p>
<p class="testimonial-firm">App Builder — Certified 2017</p>
</div>
</div>
<!-- /Badge author information -->
</div>
<!-- End of Badge 5 -->
<!-- Badge 6 -->
<div class="testimonial-item">
<!-- Badge Content -->
<div class="testimonial-content">
<div style="min-height: 275px" class="testimonial-text">
<p>"Passing Exam 461: Querying Microsoft SQL Server 2012/2014 validates the skills and knowledge necessary to create database
objects, work with and modify data, as well as troubleshoot and optimize queries."</p>
</div>
</div>
<!-- /Badge Content -->
<!-- Badge Author -->
<div class="testimonial-credits">
<!-- Picture -->
<div class="testimonial-picture">
<a href="https://www.youracclaim.com/badges/fb2ffc7a-3a7d-44fc-82f8-757352fe1102" target="_blank" title="Exam 70-461">
<img src="images/badges/exam-461.png" alt="image">
</a>
</div>
<!-- /Picture -->
<!-- Badge author information -->
<div class="testimonial-author-info">
<p class="testimonial-author">Exam 70-461</p>
<p class="testimonial-firm">Querying Microsoft SQL Server 2012/2014</p>
</div>
</div>
<!-- /Badge author information -->
</div>
<!-- End of Badge 6 -->
<!-- Badge 7 -->
<div class="testimonial-item">
<!-- Badge Content -->
<div class="testimonial-content">
<div style="min-height: 275px" class="testimonial-text">
<p>"Passing Exam 462: Administering Microsoft SQL Server 2012/2014 Databases validates the skills and knowledge necessary to
set up SQL Server database systems, make sure those systems operate efficiently, and regularly store, back up and secure
data from unauthorized access. Candidates demonstrate the ability to install and configure SQL Server, manage data, as well
as maintain instances and databases."</p>
</div>
</div>
<!-- /Badge Content -->
<!-- Badge Author -->
<div class="testimonial-credits">
<!-- Picture -->
<div class="testimonial-picture">
<a href="https://www.youracclaim.com/badges/ccd5420f-c667-4006-986a-99965dc3cbef" target="_blank" title="Exam 70-462">
<img src="images/badges/exam-462.png" alt="image">
</a>
</div>
<!-- /Picture -->
<!-- Badge author information -->
<div class="testimonial-author-info">
<p class="testimonial-author">Exam 70-462</p>
<p style="font-size: 9px" class="testimonial-firm">Administering Microsoft SQL Server 2012/2014 Databases</p>
</div>
</div>
<!-- /Badge author information -->
</div>
<!-- End of Badge 7 -->
</div>
</div>
</div>
</div>
</section>
<!-- End of About Me Subpage -->
<!-- Resume Subpage -->
<section class="pt-page pt-page-3" data-id="resume">
<div class="border-block-top-110"></div>
<div class="section-inner">
<div class="section-title-block">
<div class="section-title-wrapper">
<h2 class="section-title">Resume</h2>
<h5 class="section-description">2.5 Years of Experience</h5>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-md-4 subpage-block">
<div class="block-title">
<h3>Education</h3>
</div>
<div class="timeline">
<!-- Single event -->
<div class="timeline-event te-primary">
<h5 class="event-date">09/2011 - 01/2016</h5>
<h4 class="event-name">Computer Engineering</h4>
<span class="event-description">Back Khoa University</span>
<p>Faculty of Computer Science and Engineering. Honor Program – GPA: 8.18</p>
</div>
<!-- Single event -->
<div class="timeline-event te-primary">
<h5 class="event-date">07/2015 - 08/2015</h5>
<h4 class="event-name">2015 GKS Internship Program</h4>
<span class="event-description">Chonbuk National University</span>
<p>It hosted by NIIED (National Institute for International Education) and run by Chonbuk National University.</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4 subpage-block">
<div class="block-title">
<h3>Experience</h3>
</div>
<div class="timeline">
<!-- Single event -->
<div class="timeline-event te-primary">
<h5 class="event-date">Jan 2011 - Current</h5>
<h4 class="event-name">Fullstack Developer</h4>
<span class="event-description">Web Application</span>
<p>Build - Improve - Maintain Web Application (Product). Main field: Healthcare (ERX, EHR).</p>
</div>
</div>
<div class="block-title">
<h3>Personal Skills</h3>
</div>
<div class="skills-info">
<h4>Communication</h4>
<div class="skill-container">
<div class="skill-percentage skill-85"></div>
</div>
<h4>Team Player</h4>
<div class="skill-container">
<div class="skill-percentage skill-90"></div>
</div>
<h4>Organization</h4>
<div class="skill-container">
<div class="skill-percentage skill-90"></div>
</div>
<h4>Creativity</h4>
<div class="skill-container">
<div class="skill-percentage skill-85"></div>
</div>
<h4>Self-Learning</h4>
<div class="skill-container">
<div class="skill-percentage skill-95"></div>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4 subpage-block">
<div class="block-title">
<h3>Work Skills</h3>
</div>
<div class="skills-info">
<h4>.NET Framework - Web Service</h4>
<div class="skill-container">
<div class="skill-percentage skill-80"></div>
</div>
<h4>Reactjs</h4>
<div class="skill-container">
<div class="skill-percentage skill-85"></div>
</div>
<h4>Redux</h4>
<div class="skill-container">
<div class="skill-percentage skill-85"></div>
</div>
<h4>Durandal - Knockoutjs</h4>
<div class="skill-container">
<div class="skill-percentage skill-75"></div>
</div>
<h4>Aurelia</h4>
<div class="skill-container">
<div class="skill-percentage skill-80"></div>
</div>
<h4>Angular2</h4>
<div class="skill-container">
<div class="skill-percentage skill-65"></div>
</div>
<h4>Operation</h4>
<div class="skill-container">
<div class="skill-percentage skill-75"></div>
</div>
<h4>Healthcare Business</h4>
<div class="skill-container">
<div class="skill-percentage skill-90"></div>
</div>
<h4>EDI (Electronic Data Interchange)</h4>
<div class="skill-container">
<div class="skill-percentage skill-80"></div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-12">
<div class="download-cv-block">
<a class="button" target="_blank" href="ThinhDucNgo.pdf">Download CV</a>
</div>
</div>
</div>
</div>
</section>
<!-- End Resume Subpage -->
<!-- Portfolio Subpage -->
<section class="pt-page pt-page-4" data-id="portfolio">
<div class="border-block-top-110"></div>
<div class="section-inner">
<div class="section-title-block">
<div class="section-title-wrapper">
<h2 class="section-title">Portfolio</h2>
<h5 class="section-description">My Best Works</h5>
</div>
</div>
<!-- Portfolio Content -->
<div class="portfolio-content">
<!-- Portfolio filter -->
<ul id="portfolio_filters" class="portfolio-filters">
<li class="active">
<a class="filter btn btn-sm btn-link active" data-group="all">All</a>
</li>
<li>
<a class="filter btn btn-sm btn-link" data-group="media">Media</a>
</li>
<li>
<a class="filter btn btn-sm btn-link" data-group="illustration">Illustration</a>
</li>
<li>
<a class="filter btn btn-sm btn-link" data-group="video">Video</a>
</li>
</ul>
<!-- End of Portfolio filter -->
<!-- Portfolio Grid -->
<div id="portfolio_grid" class="portfolio-grid portfolio-masonry masonry-grid-3">
<!-- Portfolio Item 1 -->
<figure class="item" data-groups='["all", "media"]'>
<a class="ajax-page-load" href="portfolio-1.html">
<img src="images/portfolio/1.jpg" alt="">
<div>
<h5 class="name">Project Name</h5>
<small>Media</small>
<i class="pe-7s-icon pe-7s-display2"></i>
</div>
</a>
</figure>
<!-- /Portfolio Item 1 -->
<!-- Portfolio Item 2 -->
<figure class="item" data-groups='["all", "video"]'>
<a href="https://player.vimeo.com/video/97102654?autoplay=1" title="Praesent Dolor Ex" class="lightbox mfp-iframe">
<img src="images/portfolio/2.jpg" alt="">
<div>
<h5 class="name">Project Name</h5>
<small>Video</small>
<i class="pe-7s-icon pe-7s-video"></i>
</div>
</a>
</figure>
<!-- /Portfolio Item 2 -->
<!-- Portfolio Item 3 -->
<figure class="item" data-groups='["all","illustration"]'>
<a href="images/portfolio/full/3.jpg" class="lightbox" title="Duis Eu Eros Viverra">
<img src="images/portfolio/3.jpg" alt="">
<div>
<h5 class="name">Project Name</h5>
<small>Illustration</small>
<i class="pe-7s-icon pe-7s-photo"></i>
</div>
</a>
</figure>
<!-- /Portfolio Item 3 -->
<!-- Portfolio Item 4 -->
<figure class="item" data-groups='["all", "media"]'>
<a class="ajax-page-load" href="portfolio-2.html">
<img src="images/portfolio/4.jpg" alt="">
<div>
<h5 class="name">Project Name</h5>
<small>Media</small>
<i class="pe-7s-icon pe-7s-display2"></i>
</div>
</a>
</figure>
<!-- /Portfolio Item 4 -->
<!-- Portfolio Item 5 -->
<figure class="item" data-groups='["all", "illustration"]'>
<a href="images/portfolio/full/5.jpg" class="lightbox" title="Aliquam Condimentum Magna Rhoncus">
<img src="images/portfolio/5.jpg" alt="">
<div>
<h5 class="name">Project Name</h5>
<small>Illustration</small>
<i class="pe-7s-icon pe-7s-photo"></i>
</div>
</a>
</figure>
<!-- /Portfolio Item 5 -->
<!-- Portfolio Item 6 -->
<figure class="item" data-groups='["all", "media"]'>
<a class="ajax-page-load" href="portfolio-3.html">
<img src="images/portfolio/6.jpg" alt="">
<div>
<h5 class="name">Project Name</h5>
<small>Media</small>
<i class="pe-7s-icon pe-7s-display2"></i>
</div>
</a>
</figure>
<!-- /Portfolio Item 6 -->
<!-- Portfolio Item 7 -->
<figure class="item" data-groups='["all", "video"]'>
<a href="https://player.vimeo.com/video/97102654?autoplay=1" title="Nulla Facilisi" class="lightbox mfp-iframe">
<img src="images/portfolio/7.jpg" alt="">
<div>
<h5 class="name">Project Name</h5>
<small>Video</small>
<i class="pe-7s-icon pe-7s-video"></i>
</div>
</a>
</figure>
<!-- /Portfolio Item 7 -->
<!-- Portfolio Item 8 -->
<figure class="item" data-groups='["all", "media"]'>
<a class="ajax-page-load" href="portfolio-4.html">
<img src="images/portfolio/8.jpg" alt="">
<div>
<h5 class="name">Project Name</h5>
<small>Media</small>
<i class="pe-7s-icon pe-7s-display2"></i>
</div>
</a>
</figure>
<!-- /Portfolio Item 8 -->
<!-- Portfolio Item 9 -->
<figure class="item" data-groups='["all","illustration"]'>
<a href="images/portfolio/full/9.jpg" class="lightbox" title="Mauris Neque Dolor">
<img src="images/portfolio/9.jpg" alt="">
<div>
<h5 class="name">Project Name</h5>
<small>Illustration</small>
<i class="pe-7s-icon pe-7s-photo"></i>
</div>
</a>
</figure>
<!-- /Portfolio Item 9 -->
<!-- Portfolio Item 10 -->
<figure class="item" data-groups='["all", "video"]'>
<a href="https://player.vimeo.com/video/97102654?autoplay=1" title="Donec Lectus Arcu" class="lightbox mfp-iframe">
<img src="images/portfolio/10.jpg" alt="">
<div>
<h5 class="name">Project Name</h5>
<small>Video</small>
<i class="pe-7s-icon pe-7s-video"></i>
</div>
</a>
</figure>
<!-- /Portfolio Item 10 -->
<!-- Portfolio Item 11 -->
<figure class="item" data-groups='["all","illustration"]'>
<a href="images/portfolio/full/11.jpg" class="lightbox" title="Duis Eu Eros Viverra">
<img src="images/portfolio/11.jpg" alt="">
<div>
<h5 class="name">Project Name</h5>
<small>Illustration</small>
<i class="pe-7s-icon pe-7s-photo"></i>
</div>
</a>
</figure>
<!-- /Portfolio Item 11 -->
<!-- Portfolio Item 12 -->
<figure class="item" data-groups='["all","media"]'>
<a class="ajax-page-load" href="portfolio-5.html">
<img src="images/portfolio/12.jpg" alt="">
<div>
<h5 class="name">Project Name</h5>
<small>Media</small>
<i class="pe-7s-icon pe-7s-display2"></i>
</div>
</a>
</figure>
<!-- /Portfolio Item 12 -->
</div>
<!-- /Portfolio Grid -->
</div>
<!-- /Portfolio Content -->
</div>
</section>
<!-- /Portfolio Subpage -->
</div>
</div>
<!-- /Page changer wrapper -->
</div>
<!-- /Main Content -->
</div>
<script src="js/bootstrap.min.js"></script>
<script src="js/pages-switcher.js"></script>
<script src="js/imagesloaded.pkgd.min.js"></script>
<script src="js/validator.js"></script>
<script src="js/jquery.shuffle.min.js"></script>
<script src="js/masonry.pkgd.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/jquery.magnific-popup.min.js"></script>
<script src="js/jquery.mCustomScrollbar.concat.min.js"></script>
<script src="js/tilt.jquery.min.js"></script>
<script src="js/jquery.hoverdir.js"></script>
<script src="js/main.js"></script>
</body>
</html>