-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1072 lines (1004 loc) · 70.2 KB
/
index.html
File metadata and controls
1072 lines (1004 loc) · 70.2 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
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" />
<title>Ceaser Hernandez - Personal Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Premium Bootstrap 4 Landing Page Template" />
<meta name="keywords" content="bootstrap 4, premium, marketing, multipurpose" />
<meta content="Shreethemes" name="author" />
<!-- favicon -->
<link rel="shortcut icon" href="images/favicon.ico">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<!-- Magnific -->
<link href="css/magnific-popup.css" rel="stylesheet" type="text/css" />
<!-- Icon -->
<link href="css/materialdesignicons.min.css" rel="stylesheet" type="text/css" />
<!-- SLICK SLIDER -->
<link rel="stylesheet" href="css/owl.carousel.min.css"/>
<link rel="stylesheet" href="css/owl.theme.css"/>
<link rel="stylesheet" href="css/owl.transitions.css"/>
<!-- Custom Css -->
<link href="css/style.css" rel="stylesheet" type="text/css" id="theme-opt" />
<link href="css/colors/default.css" rel="stylesheet" id="color-opt">
</head>
<body>
<!-- Loader -->
<div id="preloader">
<div id="status">
<div class="logo">
<img src="images/logo.png" height="20" class="d-block mx-auto" alt="">
</div>
<div class="spinner">
<div class="bounce1"></div>
<div class="bounce2"></div>
<div class="bounce3"></div>
</div>
</div>
</div>
<!-- Loader -->
<!-- Navbar Start -->
<nav class="navbar navbar-expand-lg fixed-top navbar-custom navbar-light sticky">
<div class="container">
<a class="navbar-brand" href="#">
<img src="images/logo.png" class="l-dark" height="16" alt="">
<img src="images/logo-light.png" class="l-light" height="16" alt="">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span data-feather="menu" class="fea icon-md"></span>
</button><!--end button-->
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav mx-auto">
<li class="nav-item active">
<a class="nav-link" href="#home">Home</a>
</li><!--end nav item-->
<!-- <li class="nav-item">
<a class="nav-link" href="#services">Services</a>
</li>end nav item -->
<li class="nav-item">
<a class="nav-link" href="#resume">Education</a>
</li><!--end nav item-->
<li class="nav-item">
<a class="nav-link" href="#projects">Projects</a>
</li><!--end nav item-->
<li class="nav-item">
<a class="nav-link" href="#news">Blog</a>
</li><!--end nav item-->
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li><!--end nav item-->
<!-- <li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="javascript:void(0)" id="navbarDropdown" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Pages
</a>
<div class="dropdown-menu rounded m-0" aria-labelledby="navbarDropdown">
<div class="container mx-0 mx-md-0">
<div class="row">
<div class="col-md-12">
<a class="dropdown-item" href="page-blog.html">Blog</a>
<a class="dropdown-item" href="page-blog-detail.html">Blog Detail</a>
<a class="dropdown-item" href="page-portfolio.html">Portfolio</a>
<a class="dropdown-item" href="page-portfolio-detail.html">Portfolio Detail</a> -->
<!-- </div>end col -->
<!-- </div>end row -->
<!-- </div>end container -->
<!-- </div> -->
<!-- </li>end nav item -->
</ul>
<ul class="list-unstyled mb-0 mt-2 mt-sm-0 social-icon light-social-icon">
<li class="list-inline-item"><a href="http://github.com/CeaserH" target="_blank"><i class="mdi mdi-github-box"></i></a></li>
<li class="list-inline-item"><a href="https://www.linkedin.com/in/ceaser-hernandez-b9237163/" target="_blank"><i class="mdi mdi-linkedin"></i></a></li>
<li class="list-inline-item"><a href="https://www.twitter.com/codeCeaser" target="_blank"><i class="mdi mdi-twitter"></i></a></li>
</ul>
</div>
</div><!--end container-->
</nav><!--end navbar-->
<!-- Navbar End -->
<!-- HOME START-->
<section class="bg-home d-table w-100" style="background-image:url('https://c.wallhere.com/photos/b6/44/code_JavaScript_tilt_shift-1940633.jpg!d')" id="home">
<div class="bg-overlay"></div>
<div class="container position-relative" style="z-index: 1;">
<div class="row mt-5 mt-sm-0 justify-content-center">
<div class="col-lg-12 text-center">
<div class="title-heading">
<img src="images/home/hero.jpg" class="img-fluid rounded-circle" alt="">
<h3 class="heading text-light mt-3">I Am A <span class="element text-primary" data-elements="Web Developer, Software Engineer"></span></h3>
<p class="para-desc mx-auto text-white-50">Welcome to my personal portfolio site.</p>
<div class="mt-4">
<a href="https://github.com/CeaserH/ceaserh.github.io/raw/master/CeaserHernandez.pdf" class="btn btn-primary rounded">Download CV <i data-feather="download" class="fea icon-sm"></i></a>
</div>
</div>
</div><!--end col-->
</div><!--end row-->
</div><!--end container-->
<a href="#about" data-scroll-nav="1" class="mouse-icon mouse-icon-white rounded-pill bg-transparent mouse-down">
<span class="wheel position-relative d-block mover"></span>
</a>
</section><!--end section-->
<!-- HOME END-->
<!-- About Start -->
<section class="section pb-3" id="about">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-5 col-md-5">
<div class="about-hero">
<img src="images/hero.png" class="img-fluid mx-auto d-block about-tween position-relative" alt="">
</div>
</div><!--end col-->
<div class="col-lg-7 col-md-7 mt-4 pt-2 mt-sm-0 pt-sm-0">
<div class="section-title mb-0 ml-lg-5 ml-md-3">
<h4 class="title text-primary mb-3">Ceaser Hernandez</h4>
<h6 class="designation mb-3">I'm a Passionate <span class="text-primary">Programmer</span></h6>
<p class="text-muted">I am a Coding Dojo, Full-Stack Software Development graduate. Since graduating I have continued self-educating myself of relevant language updates and content. I am always looking for new and more effecient ways to write code. I like to read and research the capabilities of new or updated libraries that create a more functional or effecient way of producing web applications or software.</p>
<p class="text-muted">My main goal is to create something useful and meaningful for society to use - that provides convenient and effeciency in their daily lives. The best user experience they can have.</p>
<p class="text-muted"> I am looking for an intern or junior position in Front-End development. In areas of Web Applications, Web Development, or Software development.</p>
<img src="images/sign.png" height="22" alt="">
<div class="mt-4">
<a href="#projects" class="btn btn-primary mouse-down">View Portfolio</a>
</div>
</div>
</div><!--end col-->
</div><!--end row-->
</div><!--end container-->
<div class="container mt-100 mt-60">
<div class="row justify-content-center">
<div class="col-12 text-center">
<div class="section-title">
<div class="titles">
<h4 class="title title-line text-uppercase mb-4 pb-4">Hobbies & Interests</h4>
<span></span>
</div>
<p class="text-muted mx-auto para-desc mb-0">Here are a few things that are of interest to me or I enjoy leisurely.</p>
</div>
</div><!--end col-->
</div><!--end row-->
<div class="row">
<div class="col-lg-3 col-md-4 col-12 mt-4 pt-2">
<div class="interests-desc bg-light position-relative px-2 py-3 rounded">
<div class="hobbies d-flex align-items-center">
<div class="text-center rounded-pill mr-4">
<i data-feather="monitor" class="icon fea icon-md-sm"></i>
</div>
<div class="content">
<h6 class="title mb-0">Developing</h6>
</div>
</div>
</div>
</div><!--end col-->
<div class="col-lg-3 col-md-4 col-12 mt-4 pt-2">
<div class="interests-desc bg-light position-relative px-2 py-3 rounded">
<div class="hobbies d-flex align-items-center">
<div class="text-center rounded-pill mr-4">
<i data-feather="cpu" class="icon fea icon-md-sm"></i>
</div>
<div class="content">
<h6 class="title mb-0">Technology</h6>
</div>
</div>
</div>
</div><!--end col-->
<div class="col-lg-3 col-md-4 col-12 mt-4 pt-2">
<div class="interests-desc bg-light position-relative px-2 py-3 rounded">
<div class="hobbies d-flex align-items-center">
<div class="text-center rounded-pill mr-4">
<i data-feather="video" class="icon fea icon-md-sm"></i>
</div>
<div class="content">
<h6 class="title mb-0">Cinema</h6>
</div>
</div>
</div>
</div><!--end col-->
<div class="col-lg-3 col-md-4 col-12 mt-4 pt-2">
<div class="interests-desc bg-light position-relative px-2 py-3 rounded">
<div class="hobbies d-flex align-items-center">
<div class="text-center rounded-pill mr-4">
<i data-feather="coffee" class="icon fea icon-md-sm"></i>
</div>
<div class="content">
<h6 class="title mb-0">Coffee</h6>
</div>
</div>
</div>
</div><!--end col-->
<div class="col-lg-3 col-md-4 col-12 mt-4 pt-2">
<div class="interests-desc bg-light position-relative px-2 py-3 rounded">
<div class="hobbies d-flex align-items-center">
<div class="text-center rounded-pill mr-4">
<i data-feather="music" class="icon fea icon-md-sm"></i>
</div>
<div class="content">
<h6 class="title mb-0">Music</h6>
</div>
</div>
</div>
</div><!--end col-->
<div class="col-lg-3 col-md-4 col-12 mt-4 pt-2">
<div class="interests-desc bg-light position-relative px-2 py-3 rounded">
<div class="hobbies d-flex align-items-center">
<div class="text-center rounded-pill mr-4">
<i data-feather="watch" class="icon fea icon-md-sm"></i>
</div>
<div class="content">
<h6 class="title mb-0">Games</h6>
</div>
</div>
</div>
</div><!--end col-->
<div class="col-lg-3 col-md-4 col-12 mt-4 pt-2">
<div class="interests-desc bg-light position-relative px-2 py-3 rounded">
<div class="hobbies d-flex align-items-center">
<div class="text-center rounded-pill mr-4">
<i data-feather="code" class="icon fea icon-md-sm"></i>
</div>
<div class="content">
<h6 class="title mb-0">Coding</h6>
</div>
</div>
</div>
</div><!--end col-->
<div class="col-lg-3 col-md-4 col-12 mt-4 pt-2">
<div class="interests-desc bg-light position-relative px-2 py-3 rounded">
<div class="hobbies d-flex align-items-center">
<div class="text-center rounded-pill mr-4">
<i data-feather="target" class="icon fea icon-md-sm"></i>
</div>
<div class="content">
<h6 class="title mb-0">Sports</h6>
</div>
</div>
</div>
</div><!--end col-->
<div class="col-lg-3 col-md-4 col-12 mt-4 pt-2">
<div class="interests-desc bg-light position-relative px-2 py-3 rounded">
<div class="hobbies d-flex align-items-center">
<div class="text-center rounded-pill mr-4">
<i data-feather="pen-tool" class="icon fea icon-md-sm"></i>
</div>
<div class="content">
<h6 class="title mb-0">Drawing</h6>
</div>
</div>
</div>
</div><!--end col-->
<div class="col-lg-3 col-md-4 col-12 mt-4 pt-2">
<div class="interests-desc bg-light position-relative px-2 py-3 rounded">
<div class="hobbies d-flex align-items-center">
<div class="text-center rounded-pill mr-4">
<i data-feather="heart" class="icon fea icon-md-sm"></i>
</div>
<div class="content">
<h6 class="title mb-0">Cooking</h6>
</div>
</div>
</div>
</div><!--end col-->
<div class="col-lg-3 col-md-4 col-12 mt-4 pt-2">
<div class="interests-desc bg-light position-relative px-2 py-3 rounded">
<div class="hobbies d-flex align-items-center">
<div class="text-center rounded-pill mr-4">
<i data-feather="compass" class="icon fea icon-md-sm"></i>
</div>
<div class="content">
<h6 class="title mb-0">Traveling</h6>
</div>
</div>
</div>
</div><!--end col-->
<div class="col-lg-3 col-md-4 col-12 mt-4 pt-2">
<div class="interests-desc bg-light position-relative px-2 py-3 rounded">
<div class="hobbies d-flex align-items-center">
<div class="text-center rounded-pill mr-4">
<i data-feather="user" class="icon fea icon-md-sm"></i>
</div>
<div class="content">
<h6 class="title mb-0">Family</h6>
</div>
</div>
</div>
</div><!--end col-->
</div>
</div><!--end container-->
<div class="container-fluid mt-100 mt-60">
<div class="rounded py-md-5 py-4" style="background: url('images/bg-counter.jpg') center center;">
<div class="container">
<div class="row" id="counter">
<div class="col-lg-3 col-6">
<div class="counter-box rounded py-3 text-center">
<div class="counter-icon">
<i data-feather="moon" class="fea icon-md text-primary"></i>
</div>
<h3 class="counter-value mt-3 text-black" data-count="1251">95</h3>
<h6 class="counter-head font-weight-normal mb-0 text-black">Sleepless Nights</h6>
</div>
</div>
<div class="col-lg-3 col-6">
<div class="counter-box rounded py-3 text-center">
<div class="counter-icon">
<i data-feather="award" class="fea icon-md text-primary"></i>
</div>
<h3 class="counter-value mt-3 text-black" data-count="3">1</h3>
<h6 class="counter-head font-weight-normal mb-0 text-black">Awards Won</h6>
</div>
</div>
<div class="col-lg-3 col-6">
<div class="counter-box rounded py-3 text-center">
<div class="counter-icon">
<i data-feather="coffee" class="fea icon-md text-primary"></i>
</div>
<h3 class="counter-value mt-3 text-black" data-count="3261">30</h3>
<h6 class="counter-head font-weight-normal mb-0 text-black">Cups of Coffee</h6>
</div><!--end counter box-->
</div><!--end col-->
<div class="col-lg-3 col-6">
<div class="counter-box rounded py-3 text-center">
<div class="counter-icon">
<i data-feather="thumbs-up" class="fea icon-md text-primary"></i>
</div>
<h3 class="counter-value mt-3 text-black" data-count="6">3</h3>
<h6 class="counter-head font-weight-normal mb-0 text-black">Projects Complete</h6>
</div><!--end counter box-->
</div><!--end col-->
</div><!--end row-->
</div><!--end container-->
</div><!--end div-->
</div><!--end container fluid-->
</section>
<!-- About end -->
<!-- Services Start -->
<section class="section bg-light" id="services">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 text-center">
<div class="section-title">
<div class="titles">
<h4 class="title title-line text-uppercase mb-4 pb-4">What Do I Offer ?</h4>
<span></span>
</div>
<p class="text-muted mx-auto para-desc mb-0">Experienced with all stages of Software Development.</p>
</div>
</div><!--end col-->
</div><!--end row-->
<div class="row">
<div class="col-lg-4 col-md-6 col-12 mt-4 pt-2">
<div class="service-wrapper rounded position-relative text-center border border-footer p-4 pt-5 pb-5">
<div class="icon text-primary">
<i data-feather="repeat" class="fea icon-md"></i>
</div>
<div class="content mt-4">
<h5 class="title">Test-Driven Development</h5>
<p class="text-muted mt-3 mb-0">Creating and executing test cases for all functions/menthods, developing projects and applications.</p>
</div>
<div class="big-icon">
<i data-feather="repeat" class="fea icons"></i>
</div>
</div>
</div><!--end col-->
<div class="col-lg-4 col-md-6 col-12 mt-4 pt-2">
<div class="service-wrapper rounded position-relative text-center border border-footer p-4 pt-5 pb-5">
<div class="icon text-primary">
<i data-feather="hard-drive" class="fea icon-md"></i>
</div>
<div class="content mt-4">
<h5 class="title">Database Management Systems</h5>
<p class="text-muted mt-3 mb-0">Experienced with several software packages for manipulating, defining, retreiving and managing data.</p>
</div>
<div class="big-icon">
<i data-feather="hard-drive" class="fea icons"></i>
</div>
</div>
</div><!--end col-->
<div class="col-lg-4 col-md-6 col-12 mt-4 pt-2">
<div class="service-wrapper rounded position-relative text-center border border-footer p-4 pt-5 pb-5">
<div class="icon text-primary">
<i data-feather="codesandbox" class="fea icon-md"></i>
</div>
<div class="content mt-4">
<h5 class="title">Object-Oriented Design</h5>
<p class="text-muted mt-3 mb-0">Experienced with several OOP languages such as; Java, JavaScript, and Python. With understanding of C++ and .NET</p>
</div>
<div class="big-icon">
<i data-feather="codesandbox" class="fea icons"></i>
</div>
</div>
</div><!--end col-->
<div class="col-lg-4 col-md-6 col-12 mt-4 pt-2">
<div class="service-wrapper rounded position-relative text-center border border-footer p-4 pt-5 pb-5">
<div class="icon text-primary">
<i data-feather="shield" class="fea icon-md"></i>
</div>
<div class="content mt-4">
<h5 class="title">Information Security</h5>
<p class="text-muted mt-3 mb-0">Developing with an emphasis on protecting information by mitigating information risks.</p>
</div>
<div class="big-icon">
<i data-feather="shield" class="fea icons"></i>
</div>
</div>
</div><!--end col-->
<div class="col-lg-4 col-md-6 col-12 mt-4 pt-2">
<div class="service-wrapper rounded position-relative text-center border border-footer p-4 pt-5 pb-5">
<div class="icon text-primary">
<i data-feather="settings" class="fea icon-md"></i>
</div>
<div class="content mt-4">
<h5 class="title">Modularization</h5>
<p class="text-muted mt-3 mb-0">Grouping lines of code into units and organizing them - so it becomes reusable and easier to dubug and manage.</p>
</div>
<div class="big-icon">
<i data-feather="settings" class="fea icons"></i>
</div>
</div>
</div><!--end col-->
<div class="col-lg-4 col-md-6 col-12 mt-4 pt-2">
<div class="service-wrapper rounded position-relative text-center border border-footer p-4 pt-5 pb-5">
<div class="icon text-primary">
<i data-feather="watch" class="fea icon-md"></i>
</div>
<div class="content mt-4">
<h5 class="title">Improving</h5>
<p class="text-muted mt-3 mb-0">I am constantly looking for ways to improve on code and ways to make it more effecient.</p>
</div>
<div class="big-icon">
<i data-feather="watch" class="fea icons"></i>
</div>
</div>
</div><!--end col-->
</div><!--end row-->
</div><!--end container-->
</section>
<!-- Services End -->
<!-- Resume Start -->
<section class="section" id="resume">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 text-center">
<div class="section-title">
<div class="titles">
<h4 class="title title-line text-uppercase mb-4 pb-4">Education</h4>
<span></span>
</div>
<p class="text-muted mx-auto para-desc mb-0">Classes or courses I have participated in.</p>
</div>
</div><!--end col-->
</div><!--end row-->
<div class="row">
<div class="col-12">
<div class="main-icon rounded-pill text-center mt-4 pt-2">
<i data-feather="star" class="fea icon-md-sm"></i>
</div>
<div class="timeline-page pt-2 position-relative">
<div class="timeline-item mt-4">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 order-sm-1 order-2">
<div class="event event-description-left rounded p-4 border float-left text-right">
<h5 class="title mb-0 text-capitalize">Code In Place</h5>
<small class="company">Stanford</small>
<p class="timeline-subtitle mt-3 mb-0 text-muted">The course teaches the fundamentals of computer programming using the widely-used Python programming language.</p>
</div>
</div><!--end col-->
<div class="col-lg-6 col-md-6 col-sm-6 order-sm-2 order-1">
<div class="duration duration-right rounded border p-2 pl-4 pr-4 position-relative shadow text-left">Attending (April 19 - May 28 2021)</div>
</div><!--end col-->
</div><!--end row-->
</div><!--end timeline item-->
<div class="timeline-item mt-4">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="duration date-label-left border rounded p-2 pl-4 pr-4 position-relative shadow text-left">Aug 3 - Aug 31 2020</div>
</div><!--end col-->
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="event event-description-right rounded p-4 border float-left text-left">
<h5 class="title mb-0 text-capitalize">Premium Prep</h5>
<small class="company">Hack Reactor</small>
<p class="timeline-subtitle mt-3 mb-0 text-muted">JavaScript Fundamental content. This course is meant to prepare students for their Software Engineer Immerisve.</p>
</div>
</div><!--end col-->
</div><!--end row-->
</div><!--end timeline item-->
<div class="timeline-item mt-4">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 order-sm-1 order-2">
<div class="event event-description-left rounded p-4 border float-left text-right">
<h5 class="title mb-0 text-capitalize">Full-Stack Software Development</h5>
<small class="company">Coding Dojo</small>
<p class="timeline-subtitle mt-3 mb-0 text-muted">Full spectrum in software development from; Java, JavaScript, MEAN, and Python.</p>
</div>
</div><!--end col-->
<div class="col-lg-6 col-md-6 col-sm-6 order-sm-2 order-1">
<div class="duration duration-right rounded border p-2 pl-4 pr-4 position-relative shadow text-left">Sept 2 - Dec 20 2019</div>
</div><!--end col-->
</div><!--end row-->
</div><!--end timeline item-->
<div class="timeline-item mt-4">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="duration date-label-left border rounded p-2 pl-4 pr-4 position-relative shadow text-left"> 2014 - 2018</div>
</div><!--end col-->
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="event event-description-right rounded p-4 border float-left text-left">
<h5 class="title mb-0 text-capitalize">Bachelor of Science - Computer Programming</h5>
<small class="company">Academy of Art University</small>
<p class="timeline-subtitle mt-3 mb-0 text-muted">Upon the first BoS provided as AAU. I swapped from game development to their very first programming degree.</p>
</div>
</div><!--end col-->
</div><!--end row-->
</div><!--end timeline item-->
</div><!--end timeline page-->
<!-- TIMELINE END -->
</div><!--end col-->
</div><!--end row-->
</div><!--end container-->
</section><!--end section-->
<!-- Skill End -->
<!-- Skill & CTA START -->
<section class="cta-full border-top">
<div class="container-fluid">
<div class="row position-relative">
<div class="col-lg-4 padding-less img" style="background-image:url('https://specials-images.forbesimg.com/imageserve/1005771222/960x0.jpg?fit=scale')" data-jarallax='{"speed": 0.5}'></div><!-- end col -->
<div class="col-lg-8 offset-lg-4">
<div class="cta-full-img-box">
<div class="row justify-content-center">
<div class="col-12 text-center">
<div class="section-title">
<div class="titles">
<h4 class="title title-line text-uppercase mb-4 pb-4">Work Expertise</h4>
<span></span>
</div>
<p class="text-muted mx-auto para-desc mb-0">My current knowledge base and understandings by percentage. (I will be constantly updating as I am continuously learning more) </p>
</div>
</div><!--end col-->
</div><!--end row-->
<div class="row align-items-center">
<div class="col-lg-3 col-md-4 col-12">
<ul class="nav nav-pills flex-column px-0" id="pills-tab" role="tablist">
<li class="nav-item mt-4 pt-2">
<a class="nav-link rounded active" id="pills-cloud-tab" data-toggle="pill" href="#pills-cloud" role="tab" aria-controls="pills-cloud" aria-selected="false">
<div class="skill-container text-center pt-1 pb-1">
<h6 class="title mb-0">Front End</h6>
</div>
</a><!--end nav link-->
</li><!--end nav item-->
<li class="nav-item mt-4 pt-2">
<a class="nav-link rounded" id="pills-smart-tab" data-toggle="pill" href="#pills-smart" role="tab" aria-controls="pills-smart" aria-selected="false">
<div class="skill-container text-center pt-1 pb-1">
<h6 class="title mb-0">Back End</h6>
</div>
</a><!--end nav link-->
</li><!--end nav item-->
<li class="nav-item mt-4 pt-2">
<a class="nav-link rounded" id="pills-apps-tab" data-toggle="pill" href="#pills-apps" role="tab" aria-controls="pills-apps" aria-selected="false">
<div class="skill-container text-center pt-1 pb-1">
<h6 class="title mb-0">Database</h6>
</div>
</a><!--end nav link-->
</li><!--end nav item-->
<li class="nav-item mt-4 pt-2">
<a class="nav-link rounded" id="pills-smart-tab" data-toggle="pill" href="#pills-tool" role="tab" aria-controls="pills-tab" aria-selected="false">
<div class="skill-container text-center pt-1 pb-1">
<h6 class="title mb-0">Tools</h6>
</div>
</a><!--end nav link-->
</li><!--end nav item-->
</ul><!--end nav pills-->
</div><!--end col-->
<div class="col-lg-9 col-md-8 col-12">
<div class="tab-content pl-lg-4" id="pills-tabContent">
<div class="tab-pane fade show active" id="pills-cloud" role="tabpanel" aria-labelledby="pills-cloud-tab">
<div class="progress-box mt-4 pt-2">
<h6 class="font-weight-normal">HTML</h6>
<div class="progress">
<div class="progress-bar position-relative bg-primary" style="width:84%;">
<div class="progress-value d-block text-dark h6">84%</div>
</div>
</div>
</div><!--end process box-->
<div class="progress-box mt-4 pt-2">
<h6 class="font-weight-normal">CSS</h6>
<div class="progress">
<div class="progress-bar position-relative bg-primary" style="width:75%;">
<div class="progress-value d-block text-dark h6">75%</div>
</div>
</div>
</div><!--end process box-->
<div class="progress-box mt-4 pt-2">
<h6 class="font-weight-normal">JQuery</h6>
<div class="progress">
<div class="progress-bar position-relative bg-primary" style="width:79%;">
<div class="progress-value d-block text-dark h6">59%</div>
</div>
</div>
</div><!--end process box-->
<div class="progress-box mt-4 pt-2">
<h6 class="font-weight-normal">JavaScript</h6>
<div class="progress">
<div class="progress-bar position-relative bg-primary" style="width:79%;">
<div class="progress-value d-block text-dark h6">80%</div>
</div>
</div>
</div><!--end process box-->
<div class="progress-box mt-4 pt-2">
<h6 class="font-weight-normal">AngularJS</h6>
<div class="progress">
<div class="progress-bar position-relative bg-primary" style="width:79%;">
<div class="progress-value d-block text-dark h6">55%</div>
</div>
</div>
</div><!--end process box-->
<div class="progress-box mt-4 pt-2">
<h6 class="font-weight-normal">Responsive Design</h6>
<div class="progress">
<div class="progress-bar position-relative bg-primary" style="width:79%;">
<div class="progress-value d-block text-dark h6">65%</div>
</div>
</div>
</div><!--end process box-->
</div><!--end teb pane-->
<div class="tab-pane fade" id="pills-smart" role="tabpanel" aria-labelledby="pills-smart-tab">
<div class="progress-box mt-4 pt-2">
<h6 class="font-weight-normal">Java</h6>
<div class="progress">
<div class="progress-bar position-relative bg-primary" style="width:84%;">
<div class="progress-value d-block text-dark h6">54%</div>
</div>
</div>
</div><!--end process box-->
<div class="progress-box mt-4 pt-2">
<h6 class="font-weight-normal">Python</h6>
<div class="progress">
<div class="progress-bar position-relative bg-primary" style="width:75%;">
<div class="progress-value d-block text-dark h6">65%</div>
</div>
</div>
</div><!--end process box-->
<div class="progress-box mt-4 pt-2">
<h6 class="font-weight-normal">JavaScript</h6>
<div class="progress">
<div class="progress-bar position-relative bg-primary" style="width:79%;">
<div class="progress-value d-block text-dark h6">79%</div>
</div>
</div>
</div><!--end process box-->
<div class="progress-box mt-4 pt-2">
<h6 class="font-weight-normal">Node.js</h6>
<div class="progress">
<div class="progress-bar position-relative bg-primary" style="width:79%;">
<div class="progress-value d-block text-dark h6">60%</div>
</div>
</div>
</div><!--end process box-->
<div class="progress-box mt-4 pt-2">
<h6 class="font-weight-normal">Express</h6>
<div class="progress">
<div class="progress-bar position-relative bg-primary" style="width:79%;">
<div class="progress-value d-block text-dark h6">55%</div>
</div>
</div>
</div><!--end process box-->
<div class="progress-box mt-4 pt-2">
<h6 class="font-weight-normal">Spring</h6>
<div class="progress">
<div class="progress-bar position-relative bg-primary" style="width:79%;">
<div class="progress-value d-block text-dark h6">45%</div>
</div>
</div>
</div><!--end process box-->
</div><!--end teb pane-->
<div class="tab-pane fade" id="pills-apps" role="tabpanel" aria-labelledby="pills-apps-tab">
<div class="progress-box mt-4 pt-2">
<h6 class="font-weight-normal">MySQL</h6>
<div class="progress">
<div class="progress-bar position-relative bg-primary" style="width:84%;">
<div class="progress-value d-block text-dark h6">55%</div>
</div>
</div>
</div><!--end process box-->
<div class="progress-box mt-4 pt-2">
<h6 class="font-weight-normal">MongoDB</h6>
<div class="progress">
<div class="progress-bar position-relative bg-primary" style="width:75%;">
<div class="progress-value d-block text-dark h6">60%</div>
</div>
</div>
</div>
</div><!--end teb pane-->
<div class="tab-pane fade" id="pills-tool" role="tabpanel" aria-labelledby="pills-tool-tab">
<div class="progress-box mt-4 pt-2">
<h6 class="font-weight-normal">GitHub</h6>
<div class="progress">
<div class="progress-bar position-relative bg-primary" style="width:84%;">
<div class="progress-value d-block text-dark h6">55%</div>
</div>
</div>
</div><!--end process box-->
<div class="progress-box mt-4 pt-2">
<h6 class="font-weight-normal">Bootstrap</h6>
<div class="progress">
<div class="progress-bar position-relative bg-primary" style="width:75%;">
<div class="progress-value d-block text-dark h6">65%</div>
</div>
</div>
</div>
<div class="progress-box mt-4 pt-2">
<h6 class="font-weight-normal">Postman</h6>
<div class="progress">
<div class="progress-bar position-relative bg-primary" style="width:84%;">
<div class="progress-value d-block text-dark h6">45%</div>
</div>
</div>
</div><!--end process box-->
<div class="progress-box mt-4 pt-2">
<h6 class="font-weight-normal">Visual Studio</h6>
<div class="progress">
<div class="progress-bar position-relative bg-primary" style="width:84%;">
<div class="progress-value d-block text-dark h6">75%</div>
</div>
</div>
</div><!--end process box-->
</div><!--end teb pane-->
</div><!--end tab content-->
</div><!--end col-->
</div> <!-- end row -->
</div> <!-- end about detail -->
</div> <!-- end col -->
</div><!--end row-->
</div><!--end container fluid-->
</section><!--end section-->
<!-- Skill & CTA End -->
<!-- Projects End -->
<section class="section bg-light" id="projects">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 text-center">
<div class="section-title">
<div class="titles">
<h4 class="title title-line text-uppercase mb-4 pb-4">My Portfolio</h4>
<span></span>
</div>
<p class="text-muted mx-auto para-desc mb-0">This section is currently being worked on. Feel free to browse my <a href="http://github.com/ceaserh" target="_blank">GitHub</a> for my past projects.</p>
</div>
</div><!--end col-->
</div><!--end row-->
</div>
<!-- Blog Start -->
<section class="section bg-light pb-3" id="news">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 text-center">
<div class="section-title">
<div class="titles">
<h4 class="title title-line text-uppercase mb-4 pb-4">Latest News & Blog</h4>
<span></span>
</div>
<p class="text-muted mx-auto para-desc mb-0">Here are some articles or blogs that I find interesting enough to share.</p>
</div>
</div><!--end col-->
</div><!--end row-->
<div class="row">
<div class="col-lg-4 col-md-6 col-12 mt-4 pt-2">
<div class="blog-post rounded shadow">
<img src="https://cdn.vox-cdn.com/thumbor/ZJhjHPS_FDkkkp-x1FzySRbuIE8=/0x0:2640x1749/920x613/filters:focal(1109x664:1531x1086):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/69129616/twarren_rtx3080.0.jpg" class="img-fluid rounded-top" alt="">
<div class="content pt-4 pb-4 p-3">
<ul class="list-unstyled d-flex justify-content-between post-meta">
<li><i data-feather="user" class="fea icon-sm mr-1"></i><a href="https://www.theverge.com/authors/tom-warren" target="_blank" class="text-dark">Tom Warren</a></li>
<li><i data-feather="tag" class="fea icon-sm mr-1"></i><a href="http://theverge.com" target="_blank" class="text-dark">The Verge</a></li>
</ul>
<h5 class="mb-3"><a href="https://www.theverge.com/2021/4/15/22385261/nvidia-gpu-shortage-rtx-3080-warning-comments-2021" target="_blank" class="title text-dark">Nvidia warns the geart GPU shortage will continue throughout 2021</a></h5>
<ul class="list-unstyled mb-0 pt-3 border-top d-flex justify-content-between">
<li><a href="https://www.theverge.com/2021/4/15/22385261/nvidia-gpu-shortage-rtx-3080-warning-comments-2021" target="_blank" class="text-dark">Read More <i data-feather="chevron-right" class="fea icon-sm"></i></a></li>
<li><i class="mdi mdi-calendar-edit mr-1"></i>15th April, 2021</li>
</ul>
</div><!--end content-->
</div><!--end blog post-->
</div><!--end col-->
<div class="col-lg-4 col-md-6 col-12 mt-4 pt-2">
<div class="blog-post rounded shadow">
<img src="https://www.cnet.com/a/img/4vvXeqpwvO1DLw0sOMGAU1_epE4=/1092x0/2021/04/07/a1eef5ef-62af-47d1-9c1b-470bfb9f05ed/gettyimages-1175269183.jpg" class="img-fluid rounded-top" alt="">
<div class="content pt-4 pb-4 p-3">
<ul class="list-unstyled d-flex justify-content-between post-meta">
<li><i data-feather="user" class="fea icon-sm mr-1"></i><a href="https://www.cnet.com/profiles/oscarfgonzalez/" target="_blank" class="text-dark">Oscar Gonzalez</a></li>
<li><i data-feather="tag" class="fea icon-sm mr-1"></i><a href="http://cnet.com" target="_blank" class="text-dark">CNET</a></li>
</ul>
<h5 class="mb-3"><a href="https://www.cnet.com/news/twitch-users-could-face-ban-for-off-service-behavior/" target="_blank" class="title text-dark">Twitch users could face ban for off-service behavior</a></h5>
<ul class="list-unstyled mb-0 pt-3 border-top d-flex justify-content-between">
<li><a href="https://www.cnet.com/news/twitch-users-could-face-ban-for-off-service-behavior/" target="_blank" class="text-dark">Read More <i data-feather="chevron-right" class="fea icon-sm"></i></a></li>
<li><i class="mdi mdi-calendar-edit mr-1"></i>7th April, 2021</li>
</ul>
</div><!--end content-->
</div><!--end blog post-->
</div><!--end col-->
<div class="col-lg-4 col-md-6 col-12 mt-4 pt-2">
<div class="blog-post rounded shadow">
<img src="https://www.technewsworld.com/article_images/story_graphics_xlarge/xl-2020-network-engineers-2.jpg" class="img-fluid rounded-top" alt="">
<div class="content pt-4 pb-4 p-3">
<ul class="list-unstyled d-flex justify-content-between post-meta">
<li><i data-feather="user" class="fea icon-sm mr-1"></i><a href="https://www.technewsworld.com/story/New-Dev-Tool-Brings-Automation-to-Code-Changes-87071.html#searchbyline" target="_blank" class="text-dark">Jack M Germain</a></li>
<li><i data-feather="tag" class="fea icon-sm mr-1"></i><a href="http://technewsworld.com" target="_blank" class="text-dark">Tech News World</a></li>
</ul>
<h5 class="mb-3"><a href="https://www.technewsworld.com/story/New-Dev-Tool-Brings-Automation-to-Code-Changes-87071.html#searchbyline" target="_blank" class="title text-dark">New Dev Tool Brings Automation to Code Changes</a></h5>
<ul class="list-unstyled mb-0 pt-3 border-top d-flex justify-content-between">
<li><a href="https://www.technewsworld.com/story/New-Dev-Tool-Brings-Automation-to-Code-Changes-87071.html#searchbyline" target="_blank" class="text-dark">Read More <i data-feather="chevron-right" class="fea icon-sm"></i></a></li>
<li><i class="mdi mdi-calendar-edit mr-1"></i>25th March, 2021</li>
</ul>
</div><!--end content-->
</div><!--end blog post-->
</div><!--end col-->
</div><!--end row-->
</div><!--end container-->
<div class="container-fluid mt-100 mt-60">
<div class="rounded-pill py-5" style="background: url('images/hireme.jpg') center center;">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 text-center">
<h4 class="text-light">I Am Available For Freelance Projects.</h4>
<p class="text-white-50 mx-auto mt-4 para-desc">I am open to all and any projects, whether they are payed or not. Contact me through one of the ways down below.</p>
<div class="mt-4">
<a href="#contact" class="btn btn-primary mouse-down">Contact Me <i data-feather="chevron-down" class="fea icon-sm"></i></a>
</div>
</div><!--end col-->
</div><!--end row-->
</div><!--end container-->
</div><!--end div-->
</div><!--end container fluid-->
</section><!--end section-->
<!-- Blog Start -->
<!-- Contact Start -->
<section class="section pb-0" id="contact">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 text-center">
<div class="section-title">
<div class="titles">
<h4 class="title title-line text-uppercase mb-4 pb-4">Contact Me</h4>
<span></span>
</div>
<p class="text-muted mx-auto para-desc mb-0">Email is the best way to get ahold of me, but feel free to connect with me through any of my social media, email, or zoom.</p>
</div>
</div><!--end col-->
</div><!--end row-->
<div class="row">
<div class="col-md-4 mt-4 pt-2">
<div class="contact-detail text-center">
<div class="icon">
<i data-feather="phone" class="fea icon-md"></i>
</div>
<div class="content mt-4">
<h5 class="title text-uppercase">Zoom</h5>
<p class="text-muted">Connect with me on Zoom!</p>
<a href="https://us05web.zoom.us/j/7915727660?pwd=UTErelZ5ZHgrNVFuNUxQeHJIS09ZZz09" target="_blank" class="text-primary">Ceaser Hernandez</a>
</div>
</div>
</div><!--end col-->
<div class="col-md-4 mt-4 pt-2">
<div class="contact-detail text-center">
<div class="icon">
<i data-feather="mail" class="fea icon-md"></i>
</div>
<div class="content mt-4">
<h5 class="title text-uppercase">Email</h5>
<p class="text-muted">Feel free to connect with via Email.</p>
<a href="mailto:ceaser.r.hernandez@gmail.com" class="text-primary">ceaser.r.hernandez@gmail.com</a>
</div>
</div>
</div><!--end col-->
<div class="col-md-4 mt-4 pt-2">
<div class="contact-detail text-center">
<div class="icon">
<i data-feather="map-pin" class="fea icon-md"></i>
</div>
<div class="content mt-4">
<h5 class="title text-uppercase">Location</h5>
<p class="text-muted">Bay Area <br>California, USA </p>
<a href="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d1612455.6126388945!2d-123.5442895683621!3d37.87602615419257!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x808583a3a688d7b5%3A0x8c891b8457461fa9!2sSan%20Francisco%20Bay%20Area%2C%20CA%2C%20USA!5e0!3m2!1sen!2smx!4v1618393841605!5m2!1sen!2smx" class="video-play-icon text-primary">View on Google map</a>
</div>
</div>
</div><!--end col-->
</div><!--end row-->
</div><!--end container-->
</section><!--end section-->
<section class="section pt-5 mt-3">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-12">
<div class="custom-form mb-sm-30">
<div id="message"></div>
<form method="post" action="php/contact.php" name="contact-form" id="contact-form">
<div class="row">
<div class="col-lg-6">
<div class="row">
<div class="col-lg-12 col-md-6">
<div class="form-group">
<input name="name" id="name" type="text" class="form-control border rounded" placeholder="Name">
</div>
</div><!--end col-->
<div class="col-lg-12 col-md-6">
<div class="form-group">
<input name="email" id="email" type="email" class="form-control border rounded" placeholder="Email">
</div>
</div><!--end col-->
<div class="col-lg-12">
<div class="form-group">
<input name="subject" id="subject" class="form-control border rounded" placeholder="Subject">
</div>
</div><!--end col-->
</div><!--end row-->
</div><!--end col-->
<div class="col-lg-6">
<div class="form-group">
<textarea name="comments" id="comments" rows="4" class="form-control border rounded" placeholder="Your Message :"></textarea>
</div>
</div><!--end col-->
</div><!--end row-->
<div class="row">
<div class="col-sm-12 text-right">
<input type="submit" id="submit" name="send" class="submitBnt btn btn-primary" value="Send Message">
<div id="simple-msg"></div>
</div><!--end col-->
</div><!--end row-->
</form><!--end form-->