-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
875 lines (838 loc) · 41.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
<!DOCTYPE HTML>
<!--
Read Only by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Eliot Sanford's Portfolio</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="icon" href="./images/favicon.ico" sizes="64x64" type="image/x-icon">
<link rel="stylesheet" href="assets/css/main.css" />
<script src="https://kit.fontawesome.com/e661112737.js" crossorigin="anonymous"></script>
<!-- Primary Meta Tags -->
<title>Eliot Sanford's Portfolio</title>
<meta name="title" content="Eliot Sanford's Portfolio">
<meta name="description" content="Eliot Sanford
Senior React Front-End Software Engineer
Welcome to my portfolio page!
I'm excited to share with you some things about me, what I can do, and have created, plus some comments from other engineers.
Please browse below and contact me via the form at the bottom of this page, Twitter, LinkedIn,or my email.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://techieeliot.com/">
<meta property="og:title" content="Eliot Sanford's Portfolio">
<meta property="og:description" content="Eliot Sanford
Senior React Front-End Software Engineer
Welcome to my portfolio page!
I'm excited to share with you some things about me, what I can do, and have created, plus some comments from other engineers.
Please browse below and contact me via the form at the bottom of this page, Twitter, LinkedIn,or my email.">
<meta property="og:image"
content="https://techieeliot.com/images/eliot-sanford-react-software-engineer.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://techieeliot.com/">
<meta property="twitter:title" content="Eliot Sanford's Portfolio">
<meta property="twitter:description" content="Eliot Sanford
Senior React Front-End Software Engineer
Welcome to my portfolio page!">
<meta property="twitter:image"
content="https://techieeliot.com/images/eliot-sanford-react-software-engineer.png">
</head>
<body class="is-preload">
<!-- Header -->
<section id="header">
<header>
<a href="#banner">
<span class="image avatar">
<img src="images/avatar.jpg" alt="My headshot" />
</span>
</a>
<h1 id="logo">
<a href="#banner">Eliot Sanford</a>
</h1>
<p class="monospace">React Software Engineer</p>
</header>
<nav id="nav">
<ul>
<li><a href="#one" class="active">Things About Me</a></li>
<li><a href="#two">Things I Can Do</a></li>
<li><a href="#three">Things I Have Created</a></li>
<li><a href="#four">Things Developers Have Said</a></li>
<li><a href="#five">Contact Me</a></li>
<li><a href="#resume">View my Resume</a></li>
</ul>
</nav>
<footer>
<ul class="icons">
<li><a href="https://twitter.com/techieEliot" class="icon fa-twitter"><span class="label">Twitter</span></a></li>
<li><a href="https://www.linkedin.com/in/techieeliot/" class="icon fa-linkedin-in"><span class="label">LinkedIn</span></a></li>
<!-- <li><a href="https://www.facebook.com/eliot.b.sanford" class="icon fa-facebook"><span class="label">Facebook</span></a></li>
<li><a href="https://www.instagram.com/techieeliot/" class="icon fa-instagram"><span class="label">Instagram</span></a></li> -->
<li><a href="https://github.com/techieeliot" class="icon fa-github"><span class="label">Github</span></a></li>
<li><a href="mailto:[email protected]" class="icon fa-envelope"><span class="label">Email</span></a></li>
</ul>
</footer>
</section>
<!-- Wrapper -->
<div id="wrapper">
<!-- Main -->
<div id="main">
<!-- ONE -->
<section id="banner">
<div class="image main" data-position="center">
<img src="images/banner.jpg" alt="" />
</div>
<div class="container">
<header class="major">
<h2>Eliot Sanford</h2>
<p class="monospace">Senior React Front-End
Software Engineer</p>
<br>
<br>
</header>
<article>
<h3>Welcome to my portfolio page!</h3>
<p class="bio-section">I'm excited to share with you some things about me,
what I can do, and have created, plus some comments from other engineers.
</p>
<p class="bio-section">Please browse below and contact me via
<a href="#five">the form at the bottom of this page</a>,
<a href="https://twitter.com/techieEliot" target="_blank">Twitter</a>,
<a href="https://www.linkedin.com/in/techieeliot/" target="_blank">LinkedIn</a>,or
<a href="mailto:[email protected]">my email</a>.
</p>
<div class="inner">
<ul class="feature-icons">
<li>
<a href="#five">
<button class="button primary icon fa-envelope-open fit">Contact form</button>
</a>
</li>
<li>
<a href="https://twitter.com/techieEliot" target="_blank">
<button class="button primary icon fa-twitter fit">Twitter</button>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/techieeliot/" target="_blank">
<button class="button primary icon fa-linkedin-in fit">LinkedIn</button>
</a>
</li>
<li>
<a href="https://github.com/techieeliot" target="_blank">
<button class="button primary icon fa-github fit">GitHub</button>
</a>
</li>
<li>
<a href="mailto:[email protected]" target="_blank">
<button class="button primary icon fa-envelope fit">Email</button>
</a>
</li>
</ul>
</div>
<h3 id="one">Things About Me</h3>
<p class="bio-section">
I'm currently seeking a full-time React Front-End Software Engineer role
and work as an senior engineer at IDEMIA and previously at Lowes.com as a React.js software engineer.
</p>
<p class="bio-section">
I've been in IT for over nine years and have worked as a web developer for over six years.
I've worked with JavaScript for over four years, and with React for over three years.
I wanted to gain a full-stack skill set, so I attended a Back-End Coding Bootcamp to learn
Node JS and MySQL in combination with React.
</p>
<h3 id="resume">View My Resume</h3>
<h4 class="bio-section">
👋 Hiring managers and recruiters!
</h4>
<p class="bio-section">Inquiries should go through <a href="#five">my contact form</a>.
As a general rule, I don't respond to unknown phone numbers and
cold emails. Please allow me to get to know you via the form
to sort through inquiries then reach out to you.
</p>
<p class="bio-section">
Please review my portfolio and resume to see some of my projects.
I appreciate that you've read this far and would love to chat with you.
</p>
<p class="bio-section">
A Word document version of my resume is available upon request.
Thank you!
</p>
<div class="inner hide-résumé">
<iframe id="résumé-box" src="https://drive.google.com/file/d/1i4mhoFFhAci7rMYGI_ArMhYH6HQ1WM1j/preview" width="600" height="700"></iframe>
</div>
<div class="inner">
<ul class="feature-icons view-résumé">
<li>
<a href="https://drive.google.com/file/d/1i4mhoFFhAci7rMYGI_ArMhYH6HQ1WM1j/view" role="button" target="_blank" rel="noopener noreferrer" class="button primary fit icon fa-external-link-alt">
View my Resume
</a>
</li>
</ul>
</div>
</article>
</div>
</section>
<!-- TWO -->
<section id="two">
<div class="container">
<h3>Things I Can Do</h3>
<div class="features">
<article>
<a href="#" class="image"><img src="images/pic00.jpg" alt="web development books next to a small cactus" /></a>
<div class="inner">
<ul class="feature-icons">
<li class="fa-react" aria-hidden="true">React JS</li>
<li class="fa-node-js" aria-hidden="true">Node JS</li>
<li class="fa-cog" aria-hidden="true">Express JS</li>
<li class="fa-js-square" aria-hidden="true">ES6 JavaScript</li>
<li class="fa-book" aria-hidden="true">Storybook</li>
<li class="fa-caret-down" aria-hidden="true">Jest</li>
<li class="fa-docker" aria-hidden="true">Docker</li>
<li class="fa-user" aria-hidden="true">Jenkins</li>
<li class="fa-ship" aria-hidden="true">Spinnaker</li>
<li class="fa-database" aria-hidden="true">MySQL</li>
<li class="fa-git-alt" aria-hidden="true">Git</li>
<li class="fa fa-keyboard-o" aria-hidden="true">Vim</li>
<li class="fa-css3-alt" aria-hidden="true">CSS3</li>
<li class="fa-sass" aria-hidden="true">Sass</li>
<li class="fa-bootstrap" aria-hidden="true">Bootstrap</li>
<li class="fa-html5" aria-hidden="true">HTML5</li>
</ul>
</div>
</article>
</div>
</div>
</section>
<!-- THREE -->
<section id="three">
<div class="container">
<h3>Things I Have Created</h3>
<div class="features">
<article>
<span class="image"><img src="images/pic01.jpg" alt="hands on a mac laptop keyboard shot from above" /></span>
<div class="inner">
<h4>React JS & Node JS Sites</h4>
<p>I've poured out my heart and soul into these handful of projects.</p>
</p>
<ul class="feature-icons">
<li class="fa-react">
<a href="https://fourthparty.app/" target="_blank">Fourth Party</a>
</li>
<li class="fa-react">
<a href="https://trivia-game-techieeliot.netlify.app/" target="_blank">Trivia Game</a>
</li>
<li class="fa-react">
<a href="https://random-quote-machine-techieEliot.netlify.app/" target="_blank">Random Quote Machine</a>
</li>
<li class="fa-react">
<a href="https://markdown-editor-techieeliot.netlify.app" target="_blank">Markdown Previewer</a>
</li>
<!-- <li class="fa-react">
<a href="https://countries-techieeliot.netlify.app" target="_blank">Countries + Weather APIs</a>
</li> -->
<li class="fa-react">
<a href="https://phonebook-techieeliot.netlify.app" target="_blank">Phonebook App</a>
</li>
<li class="fa-react">
<a href="https://anecdote-techieeliot.netlify.app" target="_blank">Anecdote App</a>
</li>
<li class="fa-react">
<a href="https://unicafe-techieeliot.netlify.app" target="_blank">Feedback App</a>
</li>
<!-- <li class="fa-react">
<a href="https://thebikerapp.site" target="_blank">The Biker App<br>Work In Progress</a>
</li>
<li class="fa-react">
<a href="https://kikisaver.site" target="_blank">Kiki Saver<br>Work In Progress</a>
</li>
<li class="fa-react">
<a href="https://drum-machine-techieeliot.netlify.app" target="_blank">Drum Machine<br>Work In Progress</a>
</li>
<li class="fa-react">
<a href="https://calculator-techieeliot.netlify.app" target="_blank">Gatsby Calculator<br>Work In Progress</a>
</li> -->
</ul>
</div>
</article>
<article>
<span class="image">
<img src="images/pic02.jpg" alt="man with colorful socks seated in a chair crossed-legged reading javascript & jquery" />
</span>
<div class="inner">
<h4>Vanilla JavaScript Sites</h4>
<p>I have created some sample sites with JS.
</p>
<ul class="feature-icons">
<li class="fa-js-square">
<a href="https://acme-techieeliot.netlify.app/" target="_blank">Product Landing Page</a>
</li>
<li class="fa-js-square">
<a href="https://ms-coding-shopping-cart.netlify.app/" target="_blank">Shopping Cart</a>
</li>
<li class="fa-js-square">
<a href="https://ms-coding-tic-tac-toe.netlify.app/" target="_blank">Tic Tac Toe</a>
</li>
<li class="fa-js-square">
<a href="https://ms-coding-to-do-list.netlify.app/" target="_blank">To-Do List</a>
</li>
<!-- <li class="fa-database">
<a href="https://github.com/techieeliot/legendary-palm-tree" target="_blank">SQL CRUD Files</a>
</li> -->
</ul>
</div>
</article>
<article>
<span class="image"><img src="images/pic03.jpg" alt="stack of books with html & css book at the bottom" /></span>
<div class="inner">
<h4>Pure HTML and CSS Sites</h4>
<p>I have mastered pure HTML and CSS through teaching others the basics.</p>
<ul class="feature-icons">
<!-- <li class="fa-dollar-sign">
<a href="https://devsouth.us" target="_blank">jQuery devSouth Consulting, LLC</a>
</li>
<li class="fa-stream">
<a href="https://github.com/techieeliot/mentors-scaling-garbanzo" target="_blank">Tailwind CSS Example Page</a>
</li> -->
<li class="fa-css3">
<a href="https://freecodecampjxn.github.io/flexbox-example/" target="_blank">CSS Flexbox freeCodeCamp Jackson, MS</a>
</li>
<li class="fa-html5">
<a href="https://xr9loxx76o.csb.app/" target="_blank">About Me Page</a>
</li>
</ul>
</div>
</article>
<!-- <article>
<span class="image"><img src="images/pic04.jpg" alt="WordPress on a computer screen" /></span>
<div class="inner">
<h4>WordPress & Wix Sites</h4>
<p>In December 2018, I created sites using content management systems.</p>
<ul class="feature-icons">
<li class="fa-wordpress">
<a href="https://gorillafund.org/building-a-future-for-gorillas/" target="_blank">Sticky Sidebar - Gorilla Fund</a>
</li>
<li class="fa-wordpress">
<a href="https://dare2sharelive.org/about/schedule/" target="_blank">Schedule Accordion Table - Dare2Share Live</a>
</li>
<li class="fa-wordpress">
<a href="https://dare2sharelive.org/" target="_blank">Home Page - Dare2Share Live</a>
</li>
<li class="fa-wordpress">
<a href="https://weedwarriorsjackson.com/" target="_blank">Weed Warriors Jackson</a>
</li>
<li class="fa-wix">
<a href="https://www.msparalegals.org/" target="_blank">Mississppi Paralegals Association</a>
</li>
</ul>
</div>
</article> -->
<article>
<a href="https://www.youtube.com/embed/URwNDebE32I" target="_blank">
<span class="image"><img src="images/coding-class-express.png" alt="Coding class express poster at the Bolden Moore Library on March 7, 2020" /></span>
</a>
<div class="inner">
<h4>Teaching & Mentor Experiences</h4>
<p>Since 2018, I have been an instructor and mentor to others</p>
<ul class="feature-icons">
<li class="fa-free-code-camp">
<a href="https://www.meetup.com/freeCodeCamp-Jackson-Mississippi-Meetup-Group/" target="_blank">freeCodeCamp Jackson, MS Organizer and Lead Instructor</a>
</li>
<li class="fa-lightbulb">
<a href="https://intechcamp.org/2020/06/24/intech-hosts-first-virtual-technology-camp-for-120-teen-girls/" target="_blank">Intech Camp for Girls - HTML, CSS, and JavaScript Instructor 2020</a>
</li>
<li class="fa-laptop-code">
<a href="https://www.w3develops.org/" target="_blank">Developer In Residence at w3Develops</a>
</li>
<li class="fa-chalkboard-teacher">
<a href="https://twitter.com/bluesatch/status/1100474207933222922?s=20" target="_blank">Guest Lecturer at Mississippi Coding Academy</a>
</li>
</ul>
</div>
</article>
</div>
</div>
</section>
<!-- four -->
<section id="four">
<div class="container">
<div class="inner">
<h3>Things Developers Have Said</h3>
<blockquote>
<p>
Eliot is a highly motivated developer and problem solver with an above average ability to learn quickly. I've worked
through a lot of his code and it is the type of stuff you see come out of engineers with many years more experience than
he has under his belt.
</p>
<p>
I look forward to the opportunity to work with Eliot in the near future, and recommend anyone who
has a chance to bring him onto their team, you will not be disappointed.
</p>
</blockquote>
<p>December 2020</p>
<p>- Nader Dabit, Developer Relations, Software Engineer and Conference Speaker</p>
<a href="https://twitter.com/dabit3" role="button" class="button alt icon fa-twitter small">@dabit3</a>
<a href="mailto:[email protected]" role="button" class="button alt icon fa-envelope small">[email protected]</a>
<hr>
<blockquote>
<p>
I've known Eliot for a few years, having attended church together. Eliot is not only of great moral character, but also a tenacious individual in the pursuit of his goals.
</p>
<p>
Eliot approached me wanting to learn about software development just a couple of years ago, and in a short time has learned far more about the topic than I came close to in my first two years — and all of this while just learning in his free time and also having a wife and children.
</p>
<p>
Eliot is and will continue to be a great contributor to society. He has a positive attitude, a willingness to learn, and a determination to accomplish whatever is in front of him.
</p>
</blockquote>
<p>May 2020</p>
<p>- J.C. Hiatt, Software Engineer and Conference/Meetup Organizer</p>
<a href="https://twitter.com/jchiatt" role="button" class="button alt icon fa-twitter small">@jchiatt</a>
<a href="mailto:[email protected]" role="button" class="button alt icon fa-envelope small">[email protected]</a>
<hr>
<blockquote>
<p>I had the great pleasure of teaching Eliot at the Mississippi Coding Academy where I have been the night class instructor since the beginning of the year.
He is a fast learner, an inspiring student, and a helpful peer.</p>
<p>When we started working on group projects in class, Eliot was extremely helpful both in the questions
he asked and the actions he took, rolling his chair over to classmates (back when that was a thing) and
helping them along. He would then continue working on the project after class, planning out next steps,
finding which issues could help other students grow, and developing new questions for the next lecture.
Eliot is someone who is genuinely motivated to understand problems and help teams get to solutions.
</p>
<p>If you need any more specific information please do not hesitate to email me, and I would be happy to elaborate further.</p>
</blockquote>
<p>August 2020</p>
<p>- Levi, Senior Software Engineer and Bootcamp Instructor</p>
<a href="mailto:[email protected]" role="button" class="button alt icon fa-envelope small">[email protected]</a>
<hr>
<blockquote>
<p>
You will be hard stretched to find an engineer as passionately proactive as Eliot! From the high quality enterprise
grade code he writes, to his incredibly useful documentation efforts - he is one of those people that you WANT to have
in your circle of colleagues.
</p>
<p>
Pairing his subject matter expertise with his instructional skills and emotional intelligence, he will undoubtedly be a
great mentor to any seeking knowledge or advice!
</p>
If you ever have the pleasure of working alongside this standout professional, consider yourself lucky! I can’t wait to
see the phenomenal work Eliot will go on to accomplish in his career and I can only hope I get the opportunity to work
with him again.
</p>
</blockquote>
<p>July 2021</p>
<p>- Alex Wright, Lead Software Engineer</p>
<a href="mailto:[email protected] " role="button" class="button alt icon fa-envelope small">[email protected]</a>
</div>
</div>
</section>
<!-- FIVE -->
<section id="five">
<div class="container">
<h3>Contact Me</h3>
<p>Look forward to hearing from you!</p>
<form method="post" action="https://formspree.io/[email protected]">
<div class="row gtr-uniform">
<div class="col-6 col-12-xsmall"><input type="text" name="name" id="name" placeholder="Name" /></div>
<div class="col-6 col-12-xsmall"><input type="email" name="email" id="email" placeholder="Email" /></div>
<div class="col-12"><input type="text" name="subject" id="subject" placeholder="Subject" /></div>
<div class="col-12"><textarea name="message" id="message" placeholder="Message" rows="6"></textarea></div>
<div class="col-12">
<ul class="actions">
<li><input type="submit" class="button" value="Send Message" /></li>
<li><input type="reset" class="button alt"value="Reset Form" /></li>
</ul>
</div>
</div>
</form>
</div>
</section>
<!-- SIX
<section id="six">
<div class="container">
<h3>Elements</h3>
<section>
<h4>Text</h4>
<p>This is <b>bold</b> and this is <strong>strong</strong>. This is <i>italic</i> and this is <em>emphasized</em>.
This is <sup>superscript</sup> text and this is <sub>subscript</sub> text.
This is <u>underlined</u> and this is code: <code>for (;;) { ... }</code>. Finally, <a href="#">this is a link</a>.</p>
<hr />
<header>
<h4>Heading with a Subtitle</h4>
<p>Lorem ipsum dolor sit amet nullam id egestas urna aliquam</p>
</header>
<p>Nunc lacinia ante nunc ac lobortis. Interdum adipiscing gravida odio porttitor sem non mi integer non faucibus ornare mi ut ante amet placerat aliquet. Volutpat eu sed ante lacinia sapien lorem accumsan varius montes viverra nibh in adipiscing blandit tempus accumsan.</p>
<header>
<h5>Heading with a Subtitle</h5>
<p>Lorem ipsum dolor sit amet nullam id egestas urna aliquam</p>
</header>
<p>Nunc lacinia ante nunc ac lobortis. Interdum adipiscing gravida odio porttitor sem non mi integer non faucibus ornare mi ut ante amet placerat aliquet. Volutpat eu sed ante lacinia sapien lorem accumsan varius montes viverra nibh in adipiscing blandit tempus accumsan.</p>
<hr />
<h2>Heading Level 2</h2>
<h3>Heading Level 3</h3>
<h4>Heading Level 4</h4>
<h5>Heading Level 5</h5>
<h6>Heading Level 6</h6>
<hr />
<h5>Blockquote</h5>
<blockquote>Fringilla nisl. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan faucibus. Vestibulum ante ipsum primis in faucibus lorem ipsum dolor sit amet nullam adipiscing eu felis.</blockquote>
<h5>Preformatted</h5>
<pre><code>i = 0;
while (!deck.isInOrder()) {
print 'Iteration ' + i;
deck.shuffle();
i++;
}
print 'It took ' + i + ' iterations to sort the deck.';</code></pre>
</section>
<section>
<h4>Lists</h4>
<div class="row">
<div class="col-6 col-12-xsmall">
<h5>Unordered</h5>
<ul>
<li>Dolor pulvinar etiam magna etiam.</li>
<li>Sagittis adipiscing lorem eleifend.</li>
<li>Felis enim feugiat dolore viverra.</li>
</ul>
<h5>Alternate</h5>
<ul class="alt">
<li>Dolor pulvinar etiam magna etiam.</li>
<li>Sagittis adipiscing lorem eleifend.</li>
<li>Felis enim feugiat dolore viverra.</li>
</ul>
</div>
<div class="col-6 col-12-xsmall">
<h5>Ordered</h5>
<ol>
<li>Dolor pulvinar etiam magna etiam.</li>
<li>Etiam vel felis at lorem sed viverra.</li>
<li>Felis enim feugiat dolore viverra.</li>
<li>Dolor pulvinar etiam magna etiam.</li>
<li>Etiam vel felis at lorem sed viverra.</li>
<li>Felis enim feugiat dolore viverra.</li>
</ol>
<h5>Icons</h5>
<ul class="icons">
<li><a href="#" class="icon fa-twitter"><span class="label">Twitter</span></a
></li>
<li><a href="#" class="icon fa-facebook"><span class="label">Facebook</span></a
></li>
<li><a href="#" class="icon fa-instagram"><span class="label">Instagram</span></a>
</li>
<li><a href="#" class="icon fa-github"><span class="label">Github</span></a
></li>
<li><a href="#" class="icon fa-dribbble"><span class="label">Dribbble</span></a
></li>
<li><a href="#" class="icon fa-tumblr"><span class="label">Tumblr</span></a
></li>
</ul>
</div>
</div>
<h5>Actions</h5>
<ul class="actions">
<li><a href="#" class="button primary">Default</a>
</li>
<li><a href="#" class="button">Default</a>
</li>
<li><a href="#" class="button alt">Default</a>
</li>
</ul>
<ul class="actions small">
<li><a href="#" class="button primary small">Small</a>
</li>
<li><a href="#" class="button small">Small</a>
</li>
<li><a href="#" class="button alt small">Small</a>
</li>
</ul>
<div class="row">
<div class="col-3 col-6-medium col-12-xsmall">
<ul class="actions stacked">
<li><a href="#" class="button primary">Default</a>
</li>
<li><a href="#" class="button">Default</a>
</li>
<li><a href="#" class="button alt">Default</a>
</li>
</ul>
</div>
<div class="col-3 col-6 col-12-xsmall">
<ul class="actions stacked">
<li><a href="#" class="button primary small">Small</a>
</li>
<li><a href="#" class="button small">Small</a>
</li>
<li><a href="#" class="button alt small">Small</a>
</li>
</ul>
</div>
<div class="col-3 col-6-medium col-12-xsmall">
<ul class="actions stacked">
<li><a href="#" class="button primary fit">Default</a>
</li>
<li><a href="#" class="button fit">Default</a>
</li>
<li><a href="#" class="button alt fit">Default</a>
</li>
</ul>
</div>
<div class="col-3 col-6-medium col-12-xsmall">
<ul class="actions stacked">
<li><a href="#" class="button primary small fit">Small</a
></li>
<li><a href="#" class="button small fit">Small</a>
</li>
<li><a href="#" class="button alt small fit">Small</a>
</li>
</ul>
</div>
</div>
</section>
<section>
<h4>Table</h4>
<h5>Default</h5>
<div class="table-wrapper">
<table>
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Item One</td>
<td>Ante turpis integer aliquet porttitor.</td>
<td>29.99</td>
</tr>
<tr>
<td>Item Two</td>
<td>Vis ac commodo adipiscing arcu aliquet.</td>
<td>19.99</td>
</tr>
<tr>
<td>Item Three</td>
<td> Morbi faucibus arcu accumsan lorem.</td>
<td>29.99</td>
</tr>
<tr>
<td>Item Four</td>
<td>Vitae integer tempus condimentum.</td>
<td>19.99</td>
</tr>
<tr>
<td>Item Five</td>
<td>Ante turpis integer aliquet porttitor.</td>
<td>29.99</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2"></td>
<td>100.00</td>
</tr>
</tfoot>
</table>
</div>
<h5>Alternate</h5>
<div class="table-wrapper">
<table class="alt">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Item One</td>
<td>Ante turpis integer aliquet porttitor.</td>
<td>29.99</td>
</tr>
<tr>
<td>Item Two</td>
<td>Vis ac commodo adipiscing arcu aliquet.</td>
<td>19.99</td>
</tr>
<tr>
<td>Item Three</td>
<td> Morbi faucibus arcu accumsan lorem.</td>
<td>29.99</td>
</tr>
<tr>
<td>Item Four</td>
<td>Vitae integer tempus condimentum.</td>
<td>19.99</td>
</tr>
<tr>
<td>Item Five</td>
<td>Ante turpis integer aliquet porttitor.</td>
<td>29.99</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2"></td>
<td>100.00</td>
</tr>
</tfoot>
</table>
</div>
</section>
<section>
<h4>Buttons</h4>
<ul class="actions">
<li><a href="#" class="button primary">Primary</a>
</li>
<li><a href="#" class="button">Default</a>
</li>
<li><a href="#" class="button alt">Alternate</a>
</li>
</ul>
<ul class="actions">
<li><a href="#" class="button primary large">Large</a>
</li>
<li><a href="#" class="button">Default</a>
</li>
<li><a href="#" class="button alt small">Small</a>
</li>
</ul>
<ul class="actions fit">
<li><a href="#" class="button primary fit">Fit</a>
</li>
<li><a href="#" class="button fit">Fit</a>
</li>
<li><a href="#" class="button alt fit">Fit</a>
</li>
</ul>
<ul class="actions fit small">
<li><a href="#" class="button primary fit small">Fit + Small</a>
</li>
<li><a href="#" class="button fit small">Fit + Small</a>
</li>
<li><a href="#" class="button alt fit small">Fit + Small</a>
</li>
</ul>
<ul class="actions">
<li><a href="#" class="button primary icon fa-download">Icon</a>
</li>
<li><a href="#" class="button icon fa-download">Icon</a>
</li>
<li><a href="#" class="button alt icon fa-check">Icon</a>
</li>
</ul>
<ul class="actions">
<li><span class="button primary disabled">Primary</span></li>
<li><span class="button disabled">Default</span></li>
<li><span class="button alt disabled">Alternate</span></li>
</ul>
</section>
<section>
<h4>Form</h4>
<form method="post" action="#">
<div class="row gtr-uniform">
<div class="col-6 col-12-xsmall">
<input type="text" name="demo-name" id="demo-name" value="" placeholder="Name" />
</div>
<div class="col-6 col-12-xsmall">
<input type="email" name="demo-email" id="demo-email" value="" placeholder="Email" />
</div>
<div class="col-12">
<select name="demo-category" id="demo-category">
<option value="">- Category -</option>
<option value="1">Manufacturing</option>
<option value="1">Shipping</option>
<option value="1">Administration</option>
<option value="1">Human Resources</option>
</select>
</div>
<div class="col-4 col-12-medium">
<input type="radio" id="demo-priority-low" name="demo-priority" checked>
<label for="demo-priority-low">Low Priority</label>
</div>
<div class="col-4 col-12-medium">
<input type="radio" id="demo-priority-normal" name="demo-priority">
<label for="demo-priority-normal">Normal Priority</label>
</div>
<div class="col-4 col-12-medium">
<input type="radio" id="demo-priority-high" name="demo-priority">
<label for="demo-priority-high">High Priority</label>
</div>
<div class="col-6 col-12-medium">
<input type="checkbox" id="demo-copy" name="demo-copy">
<label for="demo-copy">Email me a copy of this message</label>
</div>
<div class="col-6 col-12-medium">
<input type="checkbox" id="demo-human" name="demo-human" checked>
<label for="demo-human">I am a human and not a robot</label>
</div>
<div class="col-12">
<textarea name="demo-message" id="demo-message" placeholder="Enter your message" rows="6"></textarea>
</div>
<div class="col-12">
<ul class="actions">
<li><input type="submit" value="Send Message" /></li>
<li><input type="reset" value="Reset" class="alt" /></li>
</ul>
</div>
</div>
</form>
</section>
<section>
<h4>Image</h4>
<h5>Fit</h5>
<span class="image fit"><img src="images/banner.jpg" alt="" /></span>
<div class="box alt">
<div class="row gtr-50 gtr-uniform">
<div class="col-4"><span class="image fit"><img src="images/pic01.jpg" alt="" /></span></div>
<div class="col-4"><span class="image fit"><img src="images/pic02.jpg" alt="" /></span></div>
<div class="col-4"><span class="image fit"><img src="images/pic03.jpg" alt="" /></span></div>
<div class="col-4"><span class="image fit"><img src="images/pic02.jpg" alt="" /></span></div>
<div class="col-4"><span class="image fit"><img src="images/pic03.jpg" alt="" /></span></div>
<div class="col-4"><span class="image fit"><img src="images/pic01.jpg" alt="" /></span></div>
<div class="col-4"><span class="image fit"><img src="images/pic03.jpg" alt="" /></span></div>
<div class="col-4"><span class="image fit"><img src="images/pic01.jpg" alt="" /></span></div>
<div class="col-4"><span class="image fit"><img src="images/pic02.jpg" alt="" /></span></div>
</div>
</div>
<h5>Left & Right</h5>
<p><span class="image left"><img src="images/avatar.jpg" alt="" /></span>Fringilla nisl. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent.</p>
<p><span class="image right"><img src="images/avatar.jpg" alt="" /></span>Fringilla nisl. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent.</p>
</section>
</div>
</section> -->
</div>
<!-- Footer -->
<section id="footer">
<div class="container">
<ul class="icons">
<li><a href="https://twitter.com/techieEliot" class="icon fa-twitter"><span class="label">Twitter</span></a></li>
<li><a href="https://www.linkedin.com/in/techieeliot/" class="icon fa-linkedin-in"><span class="label">LinkedIn</span></a></li>
<!-- <li><a href="https://www.facebook.com/eliot.b.sanford" class="icon fa-facebook"><span class="label">Facebook</span></a></li>
<li><a href="https://www.instagram.com/techieeliot/" class="icon fa-instagram"><span class="label">Instagram</span></a></li> -->
<li><a href="https://github.com/techieeliot" class="icon fa-github"><span class="label">Github</span></a></li>
<li><a href="mailto:[email protected]" class="icon fa-envelope"><span class="label">Email</span></a></li>
</ul>
<ul class="copyright">
<li> © <span class="copyright-year"></span>. All Rights Reserved.</li>
<li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
</ul>
</div>
</section>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>