-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
958 lines (765 loc) · 46.3 KB
/
index.html
File metadata and controls
958 lines (765 loc) · 46.3 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
<!DOCTYPE html>
<!--[if lt IE 9 ]><html class="no-js oldie" lang="en"> <![endif]-->
<!--[if IE 9 ]><html class="no-js oldie ie9" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html class="no-js" lang="en">
<!--<![endif]-->
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<title>Dylan Herbig Website</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/vendor.css">
<link rel="stylesheet" href="css/main.css">
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<!-- favicons
================================================== -->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body id="top">
<!-- header
================================================== -->
<header class="s-header">
<div class="header-logo">
<a class="site-logo" href="index.html"><img src="images/logo.png" alt="Homepage"></a>
</div>
<nav class="header-nav-wrap">
<ul class="header-nav">
<li class="current"><a class="smoothscroll" href="#home" title="home">Home</a></li>
<li><a class="smoothscroll" href="#about" title="about">About</a></li>
<li><a class="smoothscroll" href="#works" title="works">Works</a></li>
<li><a class="smoothscroll" href="#coursework" title="coursework">Coursework</a></li>
<li><a class="smoothscroll" href="#contact" title="contact">Contact</a></li>
</ul>
</nav>
<a class="header-menu-toggle" href="#0"><span>Menu</span></a>
</header> <!-- end s-header -->
<!-- home
================================================== -->
<section id="home" class="s-home page-hero target-section" data-parallax="scroll" data-image-src="images/hero-bg.JPG" data-natural-width=3000 data-natural-height=2000 data-position-y=center>
<div class="overlay"></div>
<div class="shadow-overlay"></div>
<div class="home-content">
<div class="row home-content__main">
<h3>Hello There</h3>
<h1>
My name is Dylan Herbig. <br>
I am a Student Software <br>
Developer based in Washington D.C.
</h1>
<div class="home-content__buttons">
<a href="#works" class="smoothscroll btn btn--stroke">
Latest Projects
</a>
<a href="#about" class="smoothscroll btn btn--stroke">
More About Me
</a>
</div>
<div class="home-content__scroll">
<a href="#about" class="scroll-link smoothscroll">
<span>Scroll Down</span>
</a>
</div>
</div>
</div> <!-- end home-content -->
<ul class="home-social">
<li>
<a href="https://www.linkedin.com/in/dylan-herbig-4113721a3/"><i class="im im-linkedin" aria-hidden="true"></i><span>LinkedIn</span></a>
</li>
<li>
<a href="https://www.facebook.com/dylan.herbig/"><i class="im im-facebook" aria-hidden="true"></i><span>Facebook</span></a>
</li>
<li>
<a href="https://www.instagram.com/dylan_herbig/"><i class="im im-instagram" aria-hidden="true"></i><span>Instagram</span></a>
</li>
<li>
<a href="https://github.com/dylanherbig"><i class="im im-github" aria-hidden="true"></i><span>GitHub</span></a>
</li>
</ul>
<!-- end home-social -->
</section> <!-- end s-home -->
<!-- about
================================================== -->
<section id="about" class="s-about target-section">
<div class="row narrow section-intro has-bottom-sep">
<div class="col-full text-center">
<h3>About</h3>
<h1>More About Me</h1>
<p class="lead">I am originally from Heidelberg, Germany but moved to the United States my junior year of high school. Instead of directly pursuing college after graduation, I decided to expand my cultural spectrum by travelling the world and completing a professional internship in a technology related field. Now, I am honors student at the University of Virginia studying Computer Science and Economics. </p>
</div>
</div>
<div class="row about-content">
<div class="col-six tab-full left">
<h3>Howdy!</h3>
<p>
Passionate programmer/software developer who is proficient in Java, Python, HTML & CSS. Computer Science/Engineering enthusiast who develops skills through collaborating with varying IT companies. Dedicated team player offering two seasons at Track and Field Season as Team Manager with proven communication and leader skills through building and maintaining team member relationships. Multiple exchange programs and rapid adaption to new school environments exemplify social comfort and diversity. Highlights great time management by reviewing and reorganizing schedules. Adept at working effectively to achieve goals both as a cross-functional team member and individual contributor.
</p>
</div>
<div class="col-six tab-full right">
<h3>I've Got Some skills.</h3>
<ul class="skill-bars">
<li>
<div class="progress percent90"><span>90%</span></div>
<strong>HTML5&CSS</strong>
</li>
<li>
<div class="progress percent85"><span>85%</span></div>
<strong>C++</strong>
</li>
<li>
<div class="progress percent60"><span>60%</span></div>
<strong>JavaScript</strong>
</li>
<li>
<div class="progress percent95"><span>95%</span></div>
<strong>Java</strong>
</li>
<li>
<div class="progress percent85"><span>85%</span></div>
<strong>Wordpress</strong>
</li>
<li>
<div class="progress percent90"><span>90%</span></div>
<strong>Python</strong>
</li>
</ul>
</div>
</div> <!-- end about-content -->
<div class="row about-content about-content--buttons">
<div class="col-six tab-full left">
<a href="resources/Dylan_Herbig_CV.pdf" download="Dylan_Herbig_CV" class="btn btn--primary full-width">Download My CV</a>
</div>
<div class="col-six tab-full right">
<a href="#contact" title="contact" class="btn full-width smoothscroll">Contact me now!</a>
</div>
</div> <!-- end about-content buttons -->
<div class="row about-content about-content--timeline">
<div class="col-full text-center">
<h3>My Work Experience.</h3>
</div>
<div class="col-six tab-full left">
<div class="timeline">
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">August 2021 - Today</p>
<h3>Department of Computer Science, UVA</h3>
<h5>Teaching Assistant - Software Development (CS 2110)</h5>
</div>
<div class="timeline__desc">
<p>Collaborated with other Teaching Assistants to create automated grading solutions for professors using PHP with Apache. Located defects in un-authored student code and explained to them the reason for their bugs. Lead weekly labs and assisted multiple undergraduate students.</p>
</div>
</div> <!-- end timeline__block -->
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">May 2021 - August 2021</p>
<h3>edataconsulting</h3>
<h5>Software Development Intern</h5>
</div>
<div class="timeline__desc">
<p>Full stack development with two other software developers to optimize application and interview process for new candidates. Designed and programmed multiple REST API components assigned to various user roles using Java Springboot based on Maven framework. Later implemented them into the frontend using Angular’s TypeScript based web application framework. Authored, implemented, and maintained JUnit testing procedures for each component in application. Tested different user-case scenarios using legacy code on PostgreSQL database system.</p>
</div>
</div> <!-- end timeline__block -->
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">October 2020 - May 2021</p>
<h3>Student Web Designer</h3>
<h5>Freelancer</h5>
</div>
<div class="timeline__desc">
<p>Designed and programmed user-friendly website for medical start-up and business clubs. Utilized marketing strategies to invoke clients' interest and attention. Applied programming knowledge to customize and create content for the sub-pages. Created e-commerce website that generates $100,000 net profit on monthly basis. Familiarized myself with company's products and compared and evaluated competition's approach to website design.
Continue to monitor daily website statistics to improve client's convenience of navigating website.
Worked together with Head of Project-management and CEO of companies to identify and categorize most important product information.</p>
</div>
</div> <!-- end timeline__block -->
</div> <!-- end timeline -->
</div> <!-- end left -->
<div class="col-six tab-full right">
<div class="timeline">
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">January 2020 - December 2020</p>
<h3>Heidelberg iT management</h3>
<h5>Computer Science Intern</h5>
</div>
<div class="timeline__desc">
<p>Repeatedly presented networking plans and associated products to potential clients. Taught myself HTML and CSS through online resources to create encrypted E-Mail signatures and visually appealing newsletters. Employed as subcontractor for US military project to improve existing utility meters. Collected and analyzed data from various networking projects to aid colleagues in finding core information more rapidly.
Appointed safety manager for on-site constructions throughout Germany. Responsible for enforcing safety regulations by teaching workers importance of proper equipment usage.
Traveled across Germany to different worksites to conduct thorough surveys of existing material and necessary equipment.</p>
</div>
</div> <!-- end timeline__block -->
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">April 2017 - May 2017</p>
<h3>SAP</h3>
<h5>Intern</h5>
</div>
<div class="timeline__desc">
<p>Generated more accessible information services for employees by developing and programming a new website with SAP’s website management program. Managed the website of the ‘Digital Board Room’, innovative concept to offer interactive presentation to further enhance potential client’s experience and impression. Organized and reviewed timelines for client-contracts and created comprehensive reports for each target region on a weekly and monthly basis. Conducted extensive research that placed emphasis on product which was presented on website.
Monitored daily website statistics to improve convenience for employees at SAP.
Developed professional relationships with staff and clients, gathering their insight on web design and programming structure.</p>
</div>
</div> <!-- end timeline__block -->
</div> <!-- end timeline -->
</div> <!-- end right -->
</div> <!-- end about-content timeline -->
<div class="row about-content about-content--buttons" style="margin-top: 3.6em;">
<div class="col-six tab-full left">
<a href="resources/edataconsulting_reference_letter.pdf" download="edataconsulting_reference_letter" class="btn btn--primary full-width">edataconsulting Reference Letter</a>
</div>
<div class="col-six tab-full right">
<a href="resources/HeidelbergiT_reference_letter.pdf" download="HeidelbergiT_reference_letter" class="btn full-width btn--primary">Heidelberg iT Reference Letter</a>
</div>
</div> <!-- end about-content buttons -->
</section> <!-- end about -->
<!-- works
================================================== -->
<section id="works" class="s-works target-section">
<div class="row narrow section-intro has-bottom-sep">
<div class="col-full">
<h3>Portfolio</h3>
<h1>See My Latest Projects.</h1>
<p class="lead">While I am not completing a programming assignment, participating in various clubs, or preparing for undergraduate research, I work as a Web Designer and create Wordpress websites for companies and clubs. Feel free to look at my current and past projects!</p>
</div>
</div>
<div class="portfolio-works">
<div class="portfolio-brick">
<div class="item-portfolio">
<div class="portfolio-section" style="margin-top: 100px; margin-bottom: 100px;">
<iframe src="https://hd-pa.com/" width="1100px" height="500" frameborder="0"
allowfullscreen sandbox>>
</iframe>
</div>
<div class="portfolio-section" style="margin-top: 100px; margin-bottom: 100px;">
<iframe src="https://www.osvirol.com/" width="1100px" height="500" frameborder="0"
allowfullscreen sandbox>>
</iframe>
</div>
<div class="portfolio-section" style="margin-top: 100px; margin-bottom: 100px;">
<iframe src="https://www.expertresults.co/" width="1100px" height="500" frameborder="0"
allowfullscreen sandbox>>
</iframe>
</div>
</div>
</div>
</div>
<!------
<div class="row masonry-wrap">
<div class="masonry">
<div class="masonry__brick">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-beetle.jpg" class="thumb-link" title="The Beetle Car" data-size="1050x700">
<img src="images/portfolio/beetle.jpg"
srcset="images/portfolio/beetle.jpg 1x, images/portfolio/beetle@2x.jpg 2x" alt="">
<span class="shadow-overlay"></span>
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Osvirol
</h3>
<p class="item-folio__cat">
Web Development
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="im im-link"></i>
</a>
<div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div>
</div> end item-folio
</div> end masonry__brick
<div class="masonry__brick">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-lighthouse.jpg" class="thumb-link" title="Lighthouse" data-size="1050x700">
<img src="images/portfolio/lighthouse.jpg"
srcset="images/portfolio/lighthouse.jpg 1x, images/portfolio/lighthouse@2x.jpg 2x" alt="">
<span class="shadow-overlay"></span>
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Lighthouse
</h3>
<p class="item-folio__cat">
Web Design
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="im im-link"></i>
</a>
<div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div>
</div> end item-folio
</div> end masonry__brick
<div class="masonry__brick">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-salad.jpg" class="thumb-link" data-size="1050x700">
<img src="images/portfolio/salad.jpg"
srcset="images/portfolio/salad.jpg 1x, images/portfolio/salad@2x.jpg 2x" alt="">
<span class="shadow-overlay"></span>
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Salad
</h3>
<p class="item-folio__cat">
Branding
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="im im-link"></i>
</a>
<span class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</span>
</div> end item-folio
</div> end masonry__brick
<div class="masonry__brick">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-woodcraft.jpg" class="thumb-link" data-size="1050x700">
<img src="images/portfolio/woodcraft.jpg"
srcset="images/portfolio/woodcraft.jpg 1x, images/portfolio/woodcraft@2x.jpg 2x" alt="">
<span class="shadow-overlay"></span>
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Woodcraft
</h3>
<p class="item-folio__cat">
Branding
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="im im-link"></i>
</a>
<span class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</span>
</div> end item-folio
</div> end masonry__brick
<div class="masonry__brick">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-skaterboy.jpg" class="thumb-link" data-size="1050x700">
<img src="images/portfolio/skaterboy.jpg"
srcset="images/portfolio/skaterboy.jpg 1x, images/portfolio/skaterboy@2x.jpg 2x" alt="">
<span class="shadow-overlay"></span>
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Skaterboy
</h3>
<p class="item-folio__cat">
Web Development
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="im im-link"></i>
</a>
<span class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</span>
</div> end item-folio
</div> end masonry__brick
<div class="masonry__brick">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-liberty.jpg" class="thumb-link" data-size="1050x700">
<img src="images/portfolio/liberty.jpg"
srcset="images/portfolio/liberty.jpg 1x, images/portfolio/liberty@2x.jpg 2x" alt="">
<span class="shadow-overlay"></span>
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Liberty
</h3>
<p class="item-folio__cat">
Branding
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="im im-link"></i>
</a>
<span class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</span>
</div> end item-folio
</div> end masonry__brick
<div class="masonry__brick">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-minimalismo.jpg" class="thumb-link" data-size="1050x700">
<img src="images/portfolio/minimalismo.jpg"
srcset="images/portfolio/minimalismo.jpg 1x, images/portfolio/minimalismo@2x.jpg 2x" alt="">
<span class="shadow-overlay"></span>
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Minimalismo
</h3>
<p class="item-folio__cat">
Web Design
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="im im-link"></i>
</a>
<span class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</span>
</div> end item-folio
</div> < end masonry__brick
<div class="masonry__brick">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-shutterbug.jpg" class="thumb-link" data-size="1050x700">
<img src="images/portfolio/shutterbug.jpg"
srcset="images/portfolio/shutterbug.jpg 1x, images/portfolio/shutterbug@2x.jpg 2x" alt="">
<span class="shadow-overlay"></span>
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Lady Shutterbug
</h3>
<p class="item-folio__cat">
Branding
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="im im-link"></i>
</a>
<span class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</span>
</div> end item-folio -->
</div> <!-- end masonry__brick -->
</div>
</div> <!-- end masonry -->
</section> <!-- end works -->
<!-- testimonials
================================================== -->
<div class="s-testimonials">
<div class="overlay"></div>
<div class="row testimonials-header">
<div class="col-full">
<h1 class="h02">What People Say.</h1>
</div>
</div>
<div class="row testimonials">
<div class="col-full testimonials__slider">
<div class="testimonials__slide">
<img src="images/avatars/user-01.jpg" alt="Author image" class="testimonials__avatar">
<p>Dylan delivers solid, creative designs that meet the objectives as specified in the creative brief. He created our e-commerce website that drives our sales and
continues to improve website traffic through add campaigns and debugging issues.
</p>
<div class="testimonials__author h06">
Marco Zheng
<span>Project Manager, Osvirol</span>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/1616067315913.jpg" alt="Author image" class="testimonials__avatar">
<p>In each stage of his internship, Dylan consistently acquired good specialist knowledge in a very short time and was always able to incorporate
and implement it successfully in his daily work. His ability to familiarise himself was excellent; therefore, he always grasped even complex training content very quickly.
</p>
<div class="testimonials__author h06">
Stephan Lochner
<span>CEO, edataconsulting</span>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/1569539771488.jpg" alt="Author image" class="testimonials__avatar">
<p>Dylan is an extraordinarily fast and thorough website designer who created our information site using Wordpress. Not only did he exceed our
expectations, he also impresses us with his continuous creativity and eagerness to improve.
</p>
<div class="testimonials__author h06">
Jeannet Kiessling
<span>Co-President, Heidelberg Palo Alto Club</span>
</div>
</div>
</div> <!-- end testimonials__slider -->
</div> <!-- end testimonials -->
</div> <!-- end s-testimonials -->
<!-- coursework
================================================== -->
<section id="coursework" class="s-blog target-section">
<div class="row narrow section-intro has-bottom-sep">
<div class="col-full">
<h3>Relevant Coursework</h3>
<h1>Latest From University.</h1>
<p class="lead">I always strive to take rigorous courses
to improve my current skill-set and to learn more about
the yet un-explored technical world. I believe that these courses below
have helped me on my journey.
</p>
</div>
</div>
<div class="row blog-content">
<div class="col-full">
<div class="blog-list block-1-2 block-tab-full">
<article class="col-block">
<div class="blog-date">
<a href="http://records.ureg.virginia.edu/content.php?
filter%5B27%5D=CS&filter%5B29%5D=&filter%5Bcourse_type%5D=-1&filter%5Bkeyword%5D=&filter%5B32%5D=1&filter%5Bcpage%5D=1&cur_cat_oid=52&expand=&navoid=4119&
search_database=Filter#acalog_template_course_filter">Fall 2021</a>
</div>
<h2 class="h01"><a href="http://records.ureg.virginia.edu/content.php?
filter%5B27%5D=CS&filter%5B29%5D=&filter%5Bcourse_type%5D=-1&filter%5Bkeyword%5D=&filter%5B32%5D=1&filter%5Bcpage%5D=1&cur_cat_oid=52&expand=&navoid=4119&
search_database=Filter#acalog_template_course_filter">Program and Data Representation</a></h2>
<p>
Introduces programs and data representation at the machine level. Data structuring techniques and the representation of data structures during program execution. Operations and control structures and their representation during program execution. Representations of numbers, arithmetic operations, arrays, records, recursion, hashing, stacks, queues, trees, graphs, and related concepts.
</p>
<div class="blog-cat">
<a href="">Computer Science</a><a href="">Software Development</a>
</div>
</article>
<article class="col-block">
<div class="blog-date">
<a href="http://records.ureg.virginia.edu/content.php?
filter%5B27%5D=CS&filter%5B29%5D=&filter%5Bcourse_type%5D=-1&filter%5Bkeyword%5D=&filter%5B32%5D=1&filter%5Bcpage%5D=1&cur_cat_oid=52&expand=&navoid=4119&
search_database=Filter#acalog_template_course_filter">Spring 2021</a>
</div>
<h2 class="h01">Software Development Methods</h2>
<p>
A second course in computing with an emphasis on modern software development and principles central to computer science, utilizing Java. Topics include software requirements, testing, object-oriented design, abstraction, encapsulation, recursion, and time-complexity.
</p>
<div class="blog-cat">
<a href="">Computer Science</a><a href="">Software Development</a>
</div>
</article>
<article class="col-block">
<div class="blog-date">
<a href="http://records.ureg.virginia.edu/content.php?filter%5B27%5D=ECON&filter%5B29%5D=&filter%5Bcourse_type%5D=-1&filter%5Bkeyword%5D=&filter%5B32%5D=1&filter
%5Bcpage%5D=1&cur_cat_oid=52&expand=&navoid=4119&search_database=Filter#acalog_template_course_filter">Fall 2020</a>
</div>
<h2 class="h01">Principles of Macro Economics</h2>
<p>
An introductory course into Economics with a focus on contemporary issues to broaden and develop understanding of economic functions. Discusses vital subject areas including recent Covid-19 pandemic, health insurance, wealth gap, and immigration. Allows me to write more detail-oriented code.
</p>
<div class="blog-cat">
<a href="">Economics</a><a href="">Mathematics</a>
</div>
</article>
<article class="col-block">
<div class="blog-date">
<a href="http://records.ureg.virginia.edu/content.php?
filter%5B27%5D=CS&filter%5B29%5D=&filter%5Bcourse_type%5D=-1&filter%5Bkeyword%5D=&filter%5B32%5D=1&filter%5Bcpage%5D=1&cur_cat_oid=52&expand=&navoid=4119&
search_database=Filter#acalog_template_course_filter">Spring 2021</a>
</div>
<h2 class="h01">Discrete Mathematics and Theory</h2>
<p>
Introduces discrete mathematics and proof techniques involving first order predicate logic and induction. Application areas include sets, tuples, functions, relations, and combinatorial problems.
</p>
<div class="blog-cat">
<a href="">Mathematics</a><a href="">Computer Science</a>
</div>
</article>
</div> <!-- end blog-list -->
</div> <!-- end col-full -->
</div> <!-- end blog-content -->
</section> <!-- end s-blog -->
<!-- s-stats
================================================== -->
<section id="stats" class="s-stats">
<div class="row block-1-4 block-tab-1-2 block-mob-full stats text-center">
<div class="col-block stats__col">
<div class="stats__count">
800
</div>
<h4>Cups of Coffee</h4>
</div>
<div class="col-block stats__col stats__col--highlight">
<div class="stats__upsign">
<a href="#"><i class="im im-arrow-up" aria-hidden="true"></i></a>
</div>
<div class="stats__count">
5
</div>
<h4>Websites Completed</h4>
</div>
<div class="col-block stats__col">
<div class="stats__count">
7
</div>
<h4>Happy Clients</h4>
</div>
</div>
</section> <!-- end s-stats -->
<!-- s-stats
================================================== -->
<section id="contact" class="s-contact target-section">
<div class="overlay"></div>
<div class="row narrow section-intro">
<div class="col-full">
<h3>Contact</h3>
<h1>Say Hello.</h1>
<p class="lead">I always welcome new opportunities. If you are interested in my work and would like to connect with me, please feel free to use the contact form below to write me a message or connect with me on LinkedIn!</p>
</div>
</div>
<div class="row contact__main">
<div class="col-eight tab-full contact__form">
<form name="contactForm" id="contactForm" method="post" action="sendEmail.php">
<fieldset>
<div class="form-field">
<input name="contactName" type="text" id="contactName" placeholder="Name" value="" minlength="2" required="" aria-required="true" class="full-width">
</div>
<div class="form-field">
<input name="contactEmail" type="email" id="contactEmail" placeholder="Email" value="" required="" aria-required="true" class="full-width">
</div>
<div class="form-field">
<input name="contactSubject" type="text" id="contactSubject" placeholder="Subject" value="" class="full-width">
</div>
<div class="form-field">
<textarea name="contactMessage" id="contactMessage" placeholder="Message" rows="10" cols="50" required="" aria-required="true" class="full-width"></textarea>
</div>
<div class="form-field">
<button class="full-width btn--primary">Submit</button>
<div class="submit-loader">
<div class="text-loader">Sending...</div>
<div class="s-loader">
<div class="bounce1"></div>
<div class="bounce2"></div>
<div class="bounce3"></div>
</div>
</div>
</div>
</fieldset>
</form>
<!-- contact-warning -->
<div class="message-warning">
Something went wrong. Please try again.
</div>
<!-- contact-success -->
<div class="message-success">
Your message was sent, thank you!<br>
</div>
</div>
<div class="col-four tab-full contact__infos">
<h4 class="h06">Phone</h4>
<p>Mobile: +1 (703) 936 1012<br>
</p>
<h4 class="h06">Email</h4>
<p>dylanherbig@gmail.com<br>
dch6auf@virginia.edu
</p>
<h4 class="h06">Address</h4>
<p>
400 Monroe Ln.<br>
Charlottesville, VA<br>
22903 US
</p>
</div>
</div>
</section> <!-- end s-contact -->
<!-- footer
================================================== -->
<footer>
<div class="row">
<div class="col-full">
<div class="footer-logo">
<a class="footer-site-logo" href="#0"><img src="images/logo.png" alt="Homepage"></a>
</div>
<ul class="footer-social">
<li><a href="https://www.linkedin.com/in/dylan-herbig-4113721a3/">
<i class="im im-linkedin" aria-hidden="true"></i>
<span>LinkedIn</span>
</a></li>
<li><a href="https://www.facebook.com/dylan.herbig/">
<i class="im im-facebook" aria-hidden="true"></i>
<span>Facebook</span>
</a></li>
<li><a href="https://www.instagram.com/dylan_herbig/">
<i class="im im-instagram" aria-hidden="true"></i>
<span>Instagram</span>
</a></li>
<li><a href="https://github.com/dylanherbig">
<i class="im im-github" aria-hidden="true"></i>
<span>GitHub</span>
</a></li>
</ul>
</div>
</div>
<div class="row footer-bottom">
<div class="col-twelve">
<div class="copyright">
<span>© Copyright Dylan Herbig 2021</span>
<span>Design by <a href="https://www.styleshout.com/">styleshout</a></span>
</div>
<div class="go-top">
<a class="smoothscroll" title="Back to Top" href="#top"><i class="im im-arrow-up" aria-hidden="true"></i></a>
</div>
</div>
</div> <!-- end footer-bottom -->
</footer> <!-- end footer -->
<!-- photoswipe background
================================================== -->
<div aria-hidden="true" class="pswp" role="dialog" tabindex="-1">
<div class="pswp__bg"></div>
<div class="pswp__scroll-wrap">
<div class="pswp__container">
<div class="pswp__item"></div>
<div class="pswp__item"></div>
<div class="pswp__item"></div>
</div>
<div class="pswp__ui pswp__ui--hidden">
<div class="pswp__top-bar">
<div class="pswp__counter"></div><button class="pswp__button pswp__button--close" title="Close (Esc)"></button> <button class="pswp__button pswp__button--share" title=
"Share"></button> <button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button> <button class="pswp__button pswp__button--zoom" title=
"Zoom in/out"></button>
<div class="pswp__preloader">
<div class="pswp__preloader__icn">
<div class="pswp__preloader__cut">
<div class="pswp__preloader__donut"></div>
</div>
</div>
</div>
</div>
<div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
<div class="pswp__share-tooltip"></div>
</div><button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)"></button> <button class="pswp__button pswp__button--arrow--right" title=
"Next (arrow right)"></button>
<div class="pswp__caption">
<div class="pswp__caption__center"></div>
</div>
</div>
</div>
</div><!-- end photoSwipe background -->
<div id="preloader">
<div id="loader"></div>
</div>
<!-- Java Script
================================================== -->
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
</body>
</html>