-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
836 lines (739 loc) · 36.1 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
<!DOCTYPE html>
<!--
===================================================================
== lovingly designed and developed by... ==========================
===================================================================
______
/\ ___\
\ \ \____ ______ __ ______
\ \ ___\ /\ == \ /\ \ /\ ___\
\ \ \____ \ \ __< \ \ \ \ \ \___
\ \_____\ \ \_\ \_\ \ \_\ \ \_____\
\/_____/ \/_/ /_/ \/_/ \/_____/
===================================================================
========================== [email protected] === ericqiu.io ===
===================================================================
-->
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
<meta name="description" content="Eric Qiu is a Student, Pianist, and amateur Photographer studying Software Engineering at the University of Waterloo">
<meta name="author" content="Eric Qiu">
<title>Eric Qiu</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.min.css" media="screen" />
<!-- Hover.css -->
<link rel="stylesheet" href="css/hover-min.css" />
<!-- Font Awesome -->
<link rel="stylesheet" href="css/font-awesome.min.css" media="screen" />
<!-- Owl Carousel -->
<link rel="stylesheet" href="css/owl.theme.min.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<!-- Addon Style -->
<link rel="stylesheet" href="css/style.css" media="screen" />
<!-- Favicon and Bookmark Icons -->
<link rel="shortcut icon" href="img/favicon.ico?v=2" type="image/x-icon">
<link rel="icon" href="img/favicon.ico?v=2" type="image/x-icon">
<link rel="apple-touch-icon" sizes="57x57" href="img/apple-icon-57x57.png?v=2">
<link rel="apple-touch-icon" sizes="60x60" href="img/apple-icon-60x60.png?v=2">
<link rel="apple-touch-icon" sizes="72x72" href="img/apple-icon-72x72.png?v=2">
<link rel="apple-touch-icon" sizes="76x76" href="img/apple-icon-76x76.png?v=2">
<link rel="apple-touch-icon" sizes="114x114" href="img/apple-icon-114x114.png?v=2">
<link rel="apple-touch-icon" sizes="120x120" href="img/apple-icon-120x120.png?v=2">
<link rel="apple-touch-icon" sizes="144x144" href="img/apple-icon-144x144.png?v=2">
<link rel="apple-touch-icon" sizes="152x152" href="img/apple-icon-152x152.png?v=2">
<link rel="apple-touch-icon" sizes="180x180" href="img/apple-icon-180x180.png?v=2">
<link rel="icon" type="image/png" sizes="192x192" href="img/android-icon-192x192.png?v=2">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon-32x32.png?v=2">
<link rel="icon" type="image/png" sizes="96x96" href="img/favicon-96x96.png?v=2">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon-16x16.png?v=2">
<link rel="manifest" href="img/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="img/ms-icon-144x144.png?v=2">
<meta name="theme-color" content="#ffffff">
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebSite",
"name": "Eric Qiu",
"alternateName": "Eric Qiu - Software Engineer - Professional Website",
"url": "http://www.ericqiu.io"
}
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Person",
"url": "https://www.ericqiu.io",
"image": "https://ericqiu.io/img/ms-icon-310x310.png?v=2",
"address": "Waterloo, Ontario, Canada",
"birthPlace": "Hamilton, Ontario, Canada",
"gender": "Male",
"jobTitle": "Software Engineering Student",
"nationality": "Canada",
"telephone": "9055317438",
"affiliation": {
"@type": "EducationalOrganization",
"name": "University of Waterloo",
"url": "http://uwaterloo.ca"
},
"email": [
],
"sameAs": [
"http://www.facebook.com/eqiu1998",
"http://instagram.com/eqiu24",
"http://www.linkedin.com/in/eric-qiu",
"http://www.twitter.com/eqiu1998",
"http://www.github.com/eqiu1998"
]
}
</script>
</head>
<body>
<!-- Preloader -->
<div id="preloader">
<div id="loader">
<img src="img/Preloader_8.gif" alt="preload spinner">
<div class="pre-logo">
<h4>Eric Qiu</h4>
<h5> Sit Tight... Trust Me It's Worth It! </h5>
<h5> NOTE: This site is unfinished and a work-in-progress. <h5>
<h6>(please don't judge)<h6>
</div>
</div>
</div>
<!-- End of preloader -->
<!-- Start wrapper as cross-portfolio -->
<div id="cross-portfolio" class="cross-portfolio">
<!-- Hamburger menu on scroll-->
<nav id="nav-icon">
<span></span>
<span></span>
<span></span>
<span></span>
</nav>
<!-- end of hamburger -->
<!-- Overlay menu -->
<nav id="menu-overlay">
<ul id="menu" class="menu-click list-unstyled">
<li><a data-scroll href="#profile" class="smooth-scroll">TOP</a></li>
<li><a data-scroll href="#services" class="smooth-scroll">SKILLS</a></li>
<li><a data-scroll href="#portfolio" class="smooth-scroll">WORK</a></li>
<li><a data-scroll href="#resume" class="smooth-scroll">RÉSUMÉ</a></li>
<li><a data-scroll href="#contact" class="smooth-scroll">CONTACT</a></li>
</ul>
</nav>
<!-- end of overlay menu -->
<!-- Start intro / background / big title -->
<div id="intro">
<!-- Background -->
<div class="bg">
<div class="bg-img">
<img src="img/bg1280x788.png?v=2" alt="Background Image" />
</div>
</div>
<!-- End of background -->
<!-- Top logo -->
<div class="cross-top">
<a href="./" class="logo"><span>Eric Qiu</span></a>
</div>
<!-- End of top logo -->
<!-- The middle big title -->
<div class="big-title">
<div class="text-center">
<h1>Eric Qiu</h1>
<p>I'm a <span class="sub-title"></span></p>
</div>
</div>
<!-- End of big title -->
<!-- Top Account Link Buttons -->
<!-- Chevron arrow down button -->
<button class="trigger hvr-hang"><i class="fa fa-chevron-down"></i></button>
</div>
<!-- End of intro -->
<!-- Start of profile -->
<div id="profile" class="content">
<div class="containers">
<div class="row">
<div class="col-lg-12">
<!-- Title -->
<div class="title">
<h1>ERIC QIU</h1>
<span class="h4 element"></span>
</div>
<!-- End of title -->
<!-- About me -->
<div class="space">
<h3>ABOUT ME</h3>
<p class="text-justify">Intro Paragraph Stuff</p>
<p class="text-justify">Second Intro Paragraph Stuff</p>
</div>
<!-- End of about me -->
</div>
<!-- Avatar image -->
<div class="col-lg-6 col-md-12 col-sm-12 hidden-md animated">
<img src="img/customavatar500x680.png?v=2" class="avatar" alt="Avatar">
</div>
<!-- End avatar image -->
<!-- Start skills / expertise -->
<div class="col-lg-6 col-md-12 col-sm-12">
<div class="space">
<h3>EXPERTISE</h3>
<h5>blah</h5>
<div class="progress progress-striped active">
<div class="progress-bar progress-bar-danger" style="width: 90%"></div>
</div>
<h5>blah</h5>
<div class="progress progress-striped active">
<div class="progress-bar progress-bar-success" style="width: 85%"></div>
</div>
<h5>blah</h5>
<div class="progress progress-striped active">
<div class="progress-bar progress-bar-warning" style="width: 80%"></div>
</div>
<h5>blah</h5>
<div class="progress progress-striped active">
<div class="progress-bar progress-bar-default" style="width: 70%"></div>
</div>
<h5>blah</h5>
<div class="progress progress-striped active">
<div class="progress-bar progress-bar-success" style="width: 75%"></div>
</div>
<h5>blah</h5>
<div class="progress progress-striped active">
<div class="progress-bar progress-bar-danger" style="width: 90%"></div>
</div>
</div>
</div>
<!-- End of skills / expertise -->
</div>
<!-- end row -->
</div>
<!-- end containers -->
</div>
<!-- end profile -->
<!-- Start countTo -->
<div id="count" class="content">
<div class="containers">
<div class="row">
<div class="col-md-12">
<!-- CountTo -->
<div class="animated text-center">
<div class="col-md-4">
<p class="h2"><i class="fa fa-child"></i> <span class="count" data-from="0" data-to="27" data-speed="5000" data-refresh-interval="50"></span></p>
<h5 class="text-weight">Quantity of Something</h5>
</div>
<div class="col-md-4">
<p class="h2"><i class="fa fa-laptop"></i> <span class="count" data-from="0" data-to="56" data-speed="5000" data-refresh-interval="50"></span></p>
<h5 class="text-weight">Quantity of Something</h5>
</div>
<div class="col-md-4">
<p class="h2"><i class="fa fa-code"></i> <span class="count" data-from="0" data-to="158464" data-speed="5000" data-refresh-interval="50"></span></p>
<h5 class="text-weight">Line of Code</h5>
</div>
</div>
<!-- End countTo -->
</div>
<!-- end col-md-12 -->
</div>
<!-- end row -->
</div>
<!-- end containers -->
</div>
<!-- End of countTo -->
<!-- Start services / what I can -->
<div id="services" class="content">
<div class="containers">
<div class="row">
<!-- Title -->
<div class="col-md-12 headline">
<h2>WHAT I CAN DO</h2>
<hr>
</div>
<!-- end title -->
<!-- Start -->
<div class="col-md-12">
<div class="row">
<div class="col-sm-6 animated">
<div class="panel panel-default hvr-grow-shadow">
<div class="panel-body">
<div class="icon-item">
<i class="fa fa-code"></i>
<h5>Technology 1</h5>
</div>
<div class="text-justify">
<p>Expand</p>
</div>
</div>
</div>
</div>
<div class="col-sm-6 animated">
<div class="panel panel-default hvr-grow-shadow">
<div class="panel-body">
<div class="icon-item">
<i class="fa fa-desktop"></i>
<h5>Technology 2</h5>
</div>
<div class="text-justify">
<p>Expand</p>
</div>
</div>
</div>
</div>
</div>
<!-- .row -->
<div class="row">
<div class="col-sm-6 animated">
<div class="panel panel-default hvr-grow-shadow">
<div class="panel-body">
<div class="icon-item">
<i class="fa fa-cloud"></i>
<h5>Technology 3</h5>
</div>
<div class="text-justify">
<p>Expand</p>
</div>
</div>
</div>
</div>
<div class="col-sm-6 animated">
<div class="panel panel-default hvr-grow-shadow">
<div class="panel-body">
<div class="icon-item">
<i class="fa fa-rocket"></i>
<h5>Technology 4</h5>
</div>
<div class="text-justify">
<p>Expand</p>
</div>
</div>
</div>
</div>
<!-- end services item -->
</div>
<!-- row -->
</div>
<!-- col-md-12 -->
</div>
<!-- row -->
</div>
<!-- containers -->
</div>
<!-- End of services / what i can -->
<!-- Start of portfolio -->
<div id="portfolio" class="content">
<div class="containers">
<div class="row">
<!-- title -->
<div class="col-md-12 headline">
<h2>RECENT WORK</h2>
<hr>
</div>
<!-- end title -->
<!-- start work profolio image -->
<div class="col-md-12 space">
<!-- image 1 -->
<figure class="cross-image animated">
<img src="img/project480x360.png?v=2" alt="Project 1" />
<figcaption>
<h2>Project 1</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In hendrerit libero ac accumsan lobortis.</p>
<a href="#">View More</a>
</figcaption>
</figure>
<!-- image 2 -->
<figure class="cross-image animated">
<img src="img/project480x360.png?v=2" alt="Project 2" />
<figcaption>
<h2>Project 2</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In hendrerit libero ac accumsan lobortis.</p>
<a href="#">View More</a>
</figcaption>
</figure>
<!-- image 3 -->
<figure class="cross-image animated">
<img src="img/project480x360.png?v=2" alt="Project 3" />
<figcaption>
<h2>Project 3</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In hendrerit libero ac accumsan lobortis.</p>
<a href="#">View More</a>
</figcaption>
</figure>
<!-- image 4 -->
<figure class="cross-image animated">
<img src="img/project480x360.png?v=2" alt="Project 4" />
<figcaption>
<h2>Project 4</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In hendrerit libero ac accumsan lobortis.</p>
<a href="#">View More</a>
</figcaption>
</figure>
</div>
<!-- end of work portfolio image -->
<!-- middle view more button -->
<div class="col-md-12 text-center animated">
<a href="#" class="btn btn-success btn-lg" data-toggle="modal" data-target="#projectModal"><i class="fa fa-plane"></i> View More</a>
</div>
<!-- end button -->
</div>
<!-- row -->
</div>
<!-- containers -->
</div>
<!-- End of portfolio -->
<!-- Start of resume -->
<div id="resume" class="content">
<div class="containers">
<div class="row">
<!-- title -->
<div class="col-md-12 headline">
<h2>RÉSUMÉ</h2>
<hr>
</div>
<!-- end title-->
</div>
<!-- .row -->
<!-- start resume item -->
<div class="row">
<div class="col-md-12 animated">
<h3>Education</h3>
</div>
<!-- education 1 -->
<div class="col-sm-8 col-md-8 col-md-push-4 animated">
<h4>Candidate for Bachelor of Software Engineering</h4>
<p>Currently in my 1B term of Software Engineering. Software Engineering is a cross-faculty programme directed by the Cheriton School of Computer Science and the Department of Electrical and Computer Engineering.</p>
<hr class="hidden-xs">
</div>
<div class="col-sm-4 col-md-4 col-md-pull-8 animated">
<div class="icon-list">
<div class="icon-list-icon">
<i class="fa fa-graduation-cap"></i>
</div>
<div class="icon-list-content">
<div class="icon-list-title">University of Waterloo</div>
<div class="icon-list-info">
<span>2016 - 2021</span>
</div>
</div>
</div>
<hr class="visible-xs">
</div>
<!-- education 2 -->
<div class="col-sm-8 col-md-8 col-md-push-4 animated">
<h4>Ontario Secondary School Diploma</h4>
<p>Graduated with Honours</p>
<hr class="hidden-xs">
</div>
<div class="col-sm-4 col-md-4 col-md-pull-8 animated">
<div class="icon-list">
<div class="icon-list-icon">
<i class="fa fa-graduation-cap"></i>
</div>
<div class="icon-list-content">
<div class="icon-list-title">Westmount<br>Secondary School</div>
<div class="icon-list-info">
<span>2012 - 2016</span>
</div>
</div>
</div>
<hr class="visible-xs">
</div>
</div>
<!-- .row -->
<div class="row">
<div class="col-md-12 animated">
<h3>Experiences</h3>
</div>
<!-- experience - McHacks -->
<div class="col-sm-8 col-md-8 col-md-push-4 animated">
<h4>McHacks</h4>
<p>Talk about project</p>
<hr class="hidden-xs">
</div>
<div class="col-sm-4 col-md-4 col-md-pull-8 animated">
<div class="icon-list">
<div class="icon-list-icon">
<i class="fa fa-code"></i>
</div>
<div class="icon-list-content">
<div class="icon-list-title">McGill University</div>
<div class="icon-list-info">
<span>2016</span>
</div>
</div>
</div>
<hr class="visible-xs">
</div>
<!-- experience 1 -->
<div class="col-sm-8 col-md-8 col-md-push-4 animated">
<h4>ECOO Team Programming Contest</h4>
<p>Finished as Semifinalist in both 2015 & 2016, leading the team representing Westmount Secondary School</p>
<hr class="hidden-xs">
</div>
<div class="col-sm-4 col-md-4 col-md-pull-8 animated">
<div class="icon-list">
<div class="icon-list-icon">
<i class="fa fa-trophy"></i>
</div>
<div class="icon-list-content">
<div class="icon-list-title">Educational<br>Computing Organization<br>of Ontario</div>
<div class="icon-list-info">
<span>2015 & 2016</span>
</div>
</div>
</div>
<hr class="visible-xs">
</div>
<!-- experience 2 -->
<div class="col-sm-8 col-md-8 col-md-push-4 animated">
<h4>Piano & Substitute Music Theory Instructor</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In hendrerit libero ac accumsan lobortis. Nam sem lacus, vulputate ut turpis vel, viverra porta ante.</p>
<hr class="hidden-xs">
</div>
<div class="col-sm-4 col-md-4 col-md-pull-8 animated">
<div class="icon-list">
<div class="icon-list-icon">
<i class="fa fa-briefcase"></i>
</div>
<div class="icon-list-content">
<div class="icon-list-title">Ontario Conservatory<br>of Music</div>
<div class="icon-list-info">
<span>2013 - 2016</span>
</div>
</div>
</div>
<hr class="visible-xs">
</div>
</div>
<!-- .row -->
<!-- download cv button -->
<div class="row">
<div class="col-md-12 animated text-center">
<a href="./Eric%20Qiu%20General%20R%C3%A9sum%C3%A9.pdf" target="_blank" class="btn btn-default btn-lg"><i class="fa fa-cloud-download"></i> Download Résumé</a>
</div>
</div>
<!-- row -->
</div>
<!-- containers -->
</div>
<!-- End of portfolio -->
<!-- Start testimonial -->
<div id="testimonial" class="content">
<div class="row">
<div class="col-md-12">
<!-- Carousel Slides / Quotes -->
<div class="carousel-inner animated">
<!-- Quote 1 -->
<div class="item">
<blockquote>
<div class="row">
<div class="col-sm-3 text-center">
<img class="img-circle" src="img/people400x400.png?v=2" alt="Mike Avatar">
</div>
<div class="col-sm-9">
<p class="text-item">Favourite Quote1</p>
<small>Someone</small>
</div>
</div>
</blockquote>
</div>
<!-- Quote 2 -->
<div class="item">
<blockquote>
<div class="row">
<div class="col-sm-3 text-center">
<img class="img-circle" src="img/people400x400.png?v=2" alt="Adam Avatar">
</div>
<div class="col-sm-9">
<p class="text-item">Favourite Quote2</p>
<small>Someone</small>
</div>
</div>
</blockquote>
</div>
<!-- Quote 3 -->
<div class="item">
<blockquote>
<div class="row">
<div class="col-sm-3 text-center">
<img class="img-circle" src="img/people400x400.png?v=2" alt="Ben Avatar">
</div>
<div class="col-sm-9">
<p class="text-item">Favourite Quote3</p>
<small>Someone</small>
</div>
</div>
</blockquote>
</div>
</div>
<!-- End Carousel Slides -->
</div>
<!-- col-md-12 -->
</div>
<!-- row -->
</div>
<!-- End of testimonial -->
<!-- Start of contact -->
<div id="contact" class="content">
<div class="containers">
<div class="row space">
<!-- title -->
<div class="col-md-12 headline">
<h2>LET'S WORK TOGETHER</h2>
<hr>
<p>Looking for 4-month co-ops!</p>
</div>
<!-- End title -->
<!-- Start google maps / change your address in data-center-->
<!-- <div class="col-md-12 animated">
<div class="gmap" id="map" data-center="121 S Pinckney St" data-zoom="15">
<address>
121 S Pinckney St
</address>
</div>
</div> -->
<!-- End google maps -->
</div>
<!-- row -->
<!-- Email me button -->
<div class="row">
<div class="col-md-12 animated text-center">
<a href="mailto:[email protected]" class="btn btn-primary btn-lg"><i class="fa fa-envelope"></i> EMAIL ME</a>
</div>
</div>
<!-- row -->
</div>
<!-- containers -->
</div>
<!-- End of contact -->
<!-- Start footer -->
<div id="footer" class="content">
<div class="containers">
<div class="row">
<div class="col-md-12 text-center">
<a href="./" class="footer-logo"><span>Eric Qiu</span></a>
<ul class="social">
<li class="hvr-grow"><a href="http://twitter.com/eqiu1998" target="_blank"><i class="fa fa-twitter"></i></a></li>
<li class="hvr-grow"><a href="http://github.com/eqiu1998" target="_blank"><i class="fa fa-github"></i></a></li>
<li class="hvr-grow"><a href="http://linkedin.com/in/eric-qiu" target="_blank"><i class="fa fa-linkedin"></i></a></li>
<li class="hvr-grow"><a href="http://instagram.com/eqiu24" target="_blank"><i class="fa fa-instagram"></i></a></li>
</ul>
<p>© 2016 Eric Qiu. All Rights Reserved</p>
</div>
</div>
<!-- row -->
</div>
<!-- containers -->
</div>
<!-- End of footer -->
</div>
<!-- end cross portfolio -->
<!-- Fullscreen Modal -->
<div class="modal fade fullscreen" id="projectModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<!-- modal button close -->
<a href="#" class="close" data-dismiss="modal"><i class="fa fa-times"></i></a>
</div>
<div class="modal-body">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<!-- image 1 -->
<figure class="cross-image">
<img src="img/project480x360.png?v=2" alt="Project 5" />
<figcaption>
<h2>Project 5</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In hendrerit libero ac accumsan lobortis.</p>
<a href="#">View More</a>
</figcaption>
</figure>
<!-- image 2 -->
<figure class="cross-image">
<img src="img/project480x360.png?v=2" alt="Project 6" />
<figcaption>
<h2>Project 6</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In hendrerit libero ac accumsan lobortis.</p>
<a href="#">View More</a>
</figcaption>
</figure>
<!-- image 3 -->
<figure class="cross-image">
<img src="img/project480x360.png?v=2" alt="Project 7" />
<figcaption>
<h2>Project 7</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In hendrerit libero ac accumsan lobortis.</p>
<a href="#">View More</a>
</figcaption>
</figure>
<!-- image 4 -->
<figure class="cross-image">
<img src="img/project480x360.png?v=2" alt="Project 8" />
<figcaption>
<h2>Project 8</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In hendrerit libero ac accumsan lobortis.</p>
<a href="#">View More</a>
</figcaption>
</figure>
<!-- image 5 -->
<figure class="cross-image">
<img src="img/project480x360.png?v=2" alt="Project 9" />
<figcaption>
<h2>Project 9</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In hendrerit libero ac accumsan lobortis.</p>
<a href="#">View More</a>
</figcaption>
</figure>
<!-- image 6 -->
<figure class="cross-image">
<img src="img/project480x360.png?v=2" alt="Project 10" />
<figcaption>
<h2>Project 10</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In hendrerit libero ac accumsan lobortis.</p>
<a href="#">View More</a>
</figcaption>
</figure>
</div>
<!-- col-md-8 -->
</div>
<!-- row -->
</div>
<!-- modal body -->
</div>
<!-- modal-content -->
</div>
<!-- modal-dialog -->
</div>
<!-- fullscreen -->
<!--Script -->
<!-- Jquery v1.12.0 -->
<script src="js/jquery.min.js"></script>
<!--Bootstrap Js-->
<script src="js/bootstrap.min.js"></script>
<!--Classie js -->
<script src="js/classie.min.js"></script>
<!--Typed js -->
<script src="js/typed.min.js"></script>
<!-- OwlCarousel -->
<script src="js/owl.carousel.min.js"></script>
<!-- Google maps -->
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false&language=en"></script>
<!-- Mobile map for google -->
<script src="js/jquery.mobilegmap.min.js"></script>
<!-- Waypoints -->
<script src="js/jquery.waypoints.min.js"></script>
<!-- ScrollReveal -->
<script src="js/scrollreveal.min.js"></script>
<!-- CountTo -->
<script src="js/jquery.countTo.min.js"></script>
<!-- SmoothScroll -->
<script src="js/smooth-scroll.min.js"></script>
<!-- Custom js -->
<script src="js/main.js"></script>
<!-- end script -->
</body>
</html>