-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2036 lines (1984 loc) · 123 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
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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Link to reset styling-->
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<!--Link to bootstrap-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!--Link to personal styling-->
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<!--Link to google fonts-->
<link
href="https://fonts.googleapis.com/css2?family=League+Script&family=Playfair+Display:wght@400;500;900&family=Raleway:ital,wght@0,200;0,300;0,400;1,300;1,400&display=swap"
rel="stylesheet">
<!--tab display-->
<title>Abigail Nielson - Full Stack</title>
</head>
<body>
<!--navbar to link to different portions of the same page-->
<nav class="navbar navbar-expand-md navbar-dark p-0 fixed-top" id="navlinks">
<!--Nielson Logo?-->
<a class="navbar-brand" href="#">
<img src="./assets/images/designer-logo.png" width="150" height="40" alt="Abigail Nielson">
</a>
<!-- <div class="container-fluid">
<div id="collapsed-navbar"> -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="text-white navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse text-right" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item active"><a href="#home" class="text-white nav-link">Home<span
class="sr-only">(current)</span></a></li>
<li class="nav-item"><a href="#about" class="text-white nav-link">About</a></li>
<li class="nav-item"><a href="#resume" class="text-white nav-link">Resume</a></li>
<li class="nav-item"><a href="#portfolio" class="text-white nav-link">Portfolio</a></li>
<li class="nav-item"><a href="#contact" class="text-white nav-link">Contact</a></li>
</ul>
<!-- </div>
</div> -->
</div>
</nav>
<!--==================End Navbar==================-->
<!--Initial section with image-->
<div id="home" class="grey-back">
<div class="main container">
<h1 class="text-white">Abigail Nielson</h1>
<h2 class="text-white">Full Stack Developer</h2>
<br>
<div class="my-btn">
<a href="#about" class="main-btn know-more">Know More</a>
</div>
</div>
</div>
<!--About me section with picture of me-->
<div id="about" class="black-back">
<div class="main container">
<div class="row">
<div class="col-lg-5 col-md-6">
<div class="about-image">
<img class="img-responsive" src="./assets/images/profile.png" alt="profile" width="100%">
</div>
</div>
<div class="col-lg-7 col-md-6">
<div class="main-title">
<h3 class="text-white">About Me</h3>
</div>
<!--This is where I'll fill in my story-->
<div id="brand-statement">
<p>Full stack web developer with graphic design and teaching experience. Strengths include
collaboration, project management, and communication.</p>
<p>I’m excited to apply my strong work ethic and ability to successfully manage competing
priorities to a fast-paced, quality-driven web development team.</p>
<a href="./assets/Abigail-Nielson-Resume.pdf" download="A-Nielson-Resume"
class="text-warning"><span><i class="fa fa-envelope fa-xxs"></i></span> Download Resume</a>
</div>
<div class="skills-1">
<div class="row">
<div class="col-sm-12 text-center">
<h5>Technical Skills</h5>
</div>
</div>
<div class="row">
<div class="col-sm-3 col-xs-3 skills-xs">
<div class="skills-inner">
<h4>Html5</h4>
</div>
<div class="skills-inner">
<h4>CSS3</h4>
</div>
<div class="skills-inner">
<h4>Javascript</h4>
</div>
<div class="skills-inner">
<h4>JQuery</h4>
</div>
</div>
<div class="col-sm-3 col-xs-3 skills-xs">
<div class="skills-inner">
<h4>Bootstrap</h4>
</div>
<div class="skills-inner">
<h4>PHP</h4>
</div>
<div class="skills-inner">
<h4>MySQL</h4>
</div>
<div class="skills-inner">
<h4>Firebase</h4>
</div>
</div>
<div class="col-sm-3 col-xs-3 skills-xs">
<div class="skills-inner">
<h4>NodeJs</h4>
</div>
<div class="skills-inner">
<h4>MongoDB</h4>
</div>
<div class="skills-inner">
<h4>Express</h4>
</div>
<div class="skills-inner">
<h4>Handelbars.js</h4>
</div>
</div>
<div class="col-sm-3 col-xs-3 skills-xs">
<div class="skills-inner">
<h4>Photoshop</h4>
</div>
<div class="skills-inner">
<h4>Illustrator</h4>
</div>
<div class="skills-inner">
<h4>InDesign</h4>
</div>
<div class="skills-inner">
<h4>JSON</h4>
</div>
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="skills-2">
<div class="row">
<div class="col-sm-12 text-center">
<h5>Technical Skills</h5>
</div>
</div>
<div class="row">
<div class="col-3">
<div class="skills-inner">
<h4>Html5</h4>
</div>
<div class="skills-inner">
<h4>CSS3</h4>
</div>
<div class="skills-inner">
<h4>Javascript</h4>
</div>
<div class="skills-inner">
<h4>JQuery</h4>
</div>
</div>
<div class="col-3">
<div class="skills-inner">
<h4>Bootstrap</h4>
</div>
<div class="skills-inner">
<h4>PHP</h4>
</div>
<div class="skills-inner">
<h4>MySQL</h4>
</div>
<div class="skills-inner">
<h4>Firebase</h4>
</div>
</div>
<div class="col-3">
<div class="skills-inner">
<h4>NodeJs</h4>
</div>
<div class="skills-inner">
<h4>MongoDB</h4>
</div>
<div class="skills-inner">
<h4>Express</h4>
</div>
<div class="skills-inner">
<h4>Handelbars.js</h4>
</div>
</div>
<div class="col-3">
<div class="skills-inner">
<h4>Photoshop</h4>
</div>
<div class="skills-inner">
<h4>Illustrator</h4>
</div>
<div class="skills-inner">
<h4>InDesign</h4>
</div>
<div class="skills-inner">
<h4>JSON</h4>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="col-12 mt-3">
<div class="skills-3">
<div class="row">
<div class="col-sm-12 text-center pb-1">
<h5>Soft Skills</h5>
</div>
</div>
<div class="row">
<div class="col-3">
<div class="skills-inner">
<h4>Communication</h4>
</div>
<div class="skills-inner">
<h4>Teamwork</h4>
</div>
</div>
<div class="col-3">
<div class="skills-inner">
<h4>Problem Solving</h4>
</div>
<div class="skills-inner">
<h4>Collaboration</h4>
</div>
</div>
<div class="col-3">
<div class="skills-inner">
<div class="skills-inner">
<h4>Public Speaking</h4>
</div>
<div>
<h4>Time Management</h4>
</div>
</div>
</div>
<div class="col-3">
<div class="skills-inner">
<h4>Creativity</h4>
</div>
<div class="skills-inner">
<h4>Organization</h4>
</div>
</div>
</div>
</div>
</div>
</div> -->
</div>
</div>
<!--resume section-->
<div id="resume" class="grey-back">
<div class="main container">
<h3 class="text-white">My Awesome Story</h3>
<div class="row">
<div class="col-lg-6 employment">
<div class="experience h-50" id="bellago">
<div class="row">
<div class="col-sm-7">
<div class="experience-intro">
<h6><i class="fa fa-suitcase"></i> Graphic Designer</h6>
</div>
<div class="experience-intro">
<h6>Bellago Homes</h6>
</div>
</div>
<div class="col-sm-5 justify-content-end">
<div class="experience-details">
<div>
<h7>2017 – Present</h7>
</div>
<div>
<h7>Mesa, AZ</h7>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="experience-description">
<h8>Remote & part-time year-round with full-time summers</h8>
<ul>
<li>Utilize Adobe Suite to produce and revise marketing materials.</li>
<li>Evaluate the efficiency of all marketing materials.</li>
</ul>
</div>
<div class="experience-accomplishments">
<h8>Key Accomplishments:</h8>
<ul>
<li>Crafted floor plan, plat map, and price sheet brochures for 6 brand-new
communities.</li>
</ul>
</div>
</div>
</div>
</div>
<div class="experience h-50" id="teaching">
<div class="row">
<div class="col-sm-7">
<div class="experience-intro">
<h6><i class="fa fa-suitcase"></i> Secondary Education Teacher</h6>
</div>
<div class="experience-intro">
<h6>Nebo School District </h6>
</div>
</div>
<div class="col-sm-5">
<div class="experience-details">
<div class="experience-intro">
<h7>2018 – 2020</h7>
</div>
<div class="experience-intro">
<h7>Spanish Fork, UT</h7>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="experience-description">
<h8>7th grade English, Creative Coding, & Aerobic Conditioning</h8>
<ul>
<li>Collaborated with team teachers to produce and present standards based
curriculum.</li>
<li>Assessed student proficiency in each subject.</li>
</ul>
</div>
<div class="experience-accomplishments">
<h8>Key Accomplishments:</h8>
<ul>
<li>Planned and taught 4 different subjects every day.</li>
<li>Founded a “Girls Who Code” club chapter.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 education">
<div class="experience h-50" id="bootcamp">
<div class="row">
<div class="col-sm-7">
<div class="experience-intro">
<h6><i class="fa fa-graduation-cap"></i> Bootcamp Certificate</h6>
</div>
<div class="experience-intro">
<h6>University of Utah</h6>
</div>
</div>
<div class="col-sm-5">
<div class="experience-details">
<div class="experience-intro">
<h7>Feb 2020 – July 2020</h7>
</div>
<div class="experience-intro">
<h7>Live Interactive</h7>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="experience-description">
<ul>
<li>A 24-week intensive program focused on gaining technical programming
skills.</li>
<li>Skills include HTML5, CSS3, Javascript, JQuery, Bootstrap, Firebase,
Node Js, MySQL, MongoDB, Express, Handelbars.js & ReactJS.</li>
<li>Designated "Student Teaching Assistant."</li>
</ul>
</div>
</div>
</div>
</div>
<div class="experience h-50" id="byu">
<div class="row">
<div class="col-sm-7">
<div class="experience-intro">
<h6><i class="fa fa-graduation-cap"></i> Bachelors Degree</h6>
</div>
<div class="experience-intro">
<h6>Brigham Young University</h6>
</div>
</div>
<div class="col-sm-5">
<div class="experience-details">
<div class="experience-intro">
<h7>April 2019</h7>
</div>
<div class="experience-intro">
<h7>Provo, UT</h7>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="experience-description">
<h8>English Teaching Major</h8>
<ul>
<li>Earl and Bybee Scholarship Recipient.</li>
<li>Teacher's Assistant for Multicultural Education.</li>
<li>Student Teaching Internship with Diamond Fork Junior High.</li>
</ul>
</div>
<div class="experience-accomplishments">
<h8>Digital Humanities Minor</h8>
<ul>
<li>Became proficient in HTML, CSS, Javascript, PHP, and MySQL.</li>
<li>Gained proficiency in Adobe Suite.</li>
<li>"Schwa" Student Journal Graphic Design Manager.</li>
<li>Graphic Design Internship with Bellago Homes.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--portfolio section with recent work-->
<div id="portfolio" class="black-back">
<div class="main container mb-5">
<h3 class="text-white">Web Design</h3>
<!--==================Portfolio Items Row 1==================-->
<div class="row">
<div class="col-md-3 portfolio-modal">
<div data-toggle="modal" data-target="#myAllyApp">
<img src="./assets/images/b-w-art/trees-and-flying-birds.jpg" alt="image"
class="img-fluid portfolio-img">
<p class="item-title p-3 text-center">Ally App</p>
</div>
</div>
<div class="col-md-3 portfolio-modal" data-toggle="modal" data-target="#myGroupProject1">
<img src="./assets/images/b-w-art/grayscale-trees.jpg" alt="image"
class="img-fluid portfolio-img">
<p class="item-title p-3 text-center">Hike & Forage</p>
</div>
<div class="col-md-3 portfolio-modal" data-toggle="modal" data-target="#myEvenCuriouser">
<img src="./assets/images/b-w-art/abstract-pattern.jpg" alt="image"
class="img-fluid portfolio-img">
<p class="item-title p-3 text-center">EvenCuriouser</p>
</div>
<div class="col-md-3 portfolio-modal">
<div data-toggle="modal" data-target="#myNewsScraper">
<img src="./assets/images/b-w-art/black-computer-keyboard.jpg" alt="image"
class="img-fluid portfolio-img">
<p class="item-title p-3 text-center">News Scraper</p>
</div>
</div>
</div>
<!--Portfolio Items Row 2-->
<div class="row">
<div class="col-md-3 portfolio-modal" data-toggle="modal" data-target="#myTrainScheduler">
<img src="./assets/images/b-w-art/photo-of-clocks.jpg" alt="image"
class="img-fluid portfolio-img">
<p class="item-title p-3 text-center">Train Scheduler</p>
</div>
<div class="col-md-3 portfolio-modal" data-toggle="modal" data-target="#myBurger">
<img src="./assets/images/b-w-art/leaf-4593904.jpg" alt="image" class="img-fluid portfolio-img">
<p class="item-title p-3 text-center">Burger</p>
</div>
<div class="col-md-3 portfolio-modal" data-toggle="modal" data-target="#myGifTastic">
<img src="./assets/images/b-w-art/black-textile.jpg" alt="image"
class="img-fluid portfolio-img">
<p class="item-title p-3 text-center">GifTastic</p>
</div>
<div class="col-md-3 portfolio-modal">
<div data-toggle="modal" data-target="#myFriendFinder">
<img src="./assets/images/b-w-art/gray-surface.jpg" alt="image"
class="img-fluid portfolio-img">
<p class="item-title p-3 text-center">Friend Finder</p>
</div>
</div>
</div>
<!--Portfolio Items Row 3-->
<div class="row">
<div class="col-md-3 portfolio-modal">
<div data-toggle="modal" data-target="#myCrystals">
<img src="./assets/images/b-w-art/surface.jpg" alt="image" class="img-fluid portfolio-img">
<p class="item-title p-3 text-center">Crystals Game</p>
</div>
</div>
<div class="col-md-3 portfolio-modal" data-toggle="modal" data-target="#myTrivia">
<img src="./assets/images/b-w-art/coconut-tree.jpg" alt="image" class="img-fluid portfolio-img">
<p class="item-title p-3 text-center">Trivia Game</p>
</div>
<div class="col-md-3 portfolio-modal">
<div data-toggle="modal" data-target="#myHangman">
<img src="./assets/images/b-w-art/curve-design.jpg" alt="image"
class="img-fluid portfolio-img">
<p class="item-title p-3 text-center">Hangman</p>
</div>
</div>
<!-- <div class="col-md-3 portfolio-modal" data-toggle="modal" data-target="#myLiriBot">
<img src="./assets/images/b-w-art/monochrome.jpg" alt="image" class="img-fluid portfolio-img">
<p class="item-title p-3 text-center">LiriBot</p>
</div> -->
<div class="col-md-3 portfolio-modal" data-toggle="modal" data-target="#myBamazon">
<img src="./assets/images/b-w-art/monochrome.jpg" alt="image" class="img-fluid portfolio-img">
<p class="item-title p-3 text-center">Bamazon</p>
</div>
</div>
</div>
<!--==================MODALS with project info==================-->
<div>
<div class="row m-4">
<!--Hangman modal-->
<div id="myHangman" class="modal fade" role="dialog">
<div class="modal-dialog modal-dialog-centered modal-lg">
<!--Modal content-->
<div class="modal-content">
<div class="modal-header">
<h5>Hangman</h5>
</div>
<div class="modal-body">
<p>This project is a word-guess game. This app runs in the browser, and features
dynamically updated HTML and CSS powered by JavaScript.</p>
<ul>
<li>Javascript</li>
<li>HTML5</li>
<li>CSS</li>
</ul>
</div>
<div class="modal-footer">
<a class="text-secondary" href="https://github.com/aanielson/Word-Guess-Game">
<i class="fa fa-github fa-3x"></i>
</a>
<a href="https://aanielson.github.io/Word-Guess-Game/index.html"
class="project-link btn">Go to project!</a>
<button type="button" class="btn" id="modal-button"
data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!--Crystals Game Modal-->
<div id="myCrystals" class="modal fade" role="dialog">
<div class="modal-dialog modal-dialog-centered modal-lg">
<!--Modal content-->
<div class="modal-content">
<div class="modal-header">
<h5>Crystals Game</h5>
</div>
<div class="modal-body">
<p>This project is a fun and interactive game for web browsers. It dynamically
updates the HTML pages with the jQuery library.</p>
<p>Here's how the game works:</p>
<ol>
<li>There will be four crystals displayed as buttons on the page. The player
will be shown a random number at the start of the game.</li>
<li>When the player clicks on a crystal, it will add a specific amount of points
to the player's total score. The game hides this amount until the player
clicks a crystal.</li>
<li>When they do click a crystal, the player's score counter is updated.</li>
<li>The player wins if their total score matches the random number from the
beginning of the game. The player loses if their score goes above the random
number.</li>
<li>The game restarts whenever the player wins or loses, and the scoreboard is
updated to reflect that.</li>
</ol>
<h9>Technologies Used</h9>
<ul>
<li>Javascript</li>
<li>JQuery</li>
<li>HTML5</li>
<li>CSS</li>
<li>Bootstrap</li>
</ul>
</div>
<div class="modal-footer">
<a class="text-secondary" href="https://github.com/aanielson/unit-4-game">
<i class="fa fa-github fa-3x"></i>
</a>
<a href="https://aanielson.github.io/unit-4-game/" class="project-link btn">Go to
project!</a>
<button type="button" class="btn" id="modal-button"
data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!--Trivia Game Modal-->
<div id="myTrivia" class="modal fade" role="dialog">
<div class="modal-dialog modal-dialog-centered modal-lg">
<!--Modal content-->
<div class="modal-content">
<div class="modal-header">
<h5>Trivia Game</h5>
</div>
<div class="modal-body">
<p>This project is a Pokémon trivia game using JavaScript for the logic and jQuery
to manipulate HTML.</p>
<h9>Technologies Used</h9>
<ul>
<li>Javascript</li>
<li>JQuery</li>
<li>Timers</li>
<li>HTML5</li>
<li>CSS</li>
<li>Bootstrap</li>
</ul>
</div>
<div class="modal-footer">
<a class="text-secondary" href="https://github.com/aanielson/TriviaGame">
<i class="fa fa-github fa-3x"></i>
</a>
<a href="https://aanielson.github.io/TriviaGame/" class="project-link btn">Go to
project!</a>
<button type="button" class="btn" id="modal-button"
data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!--GifTastic Modal-->
<div id="myGifTastic" class="modal fade" role="dialog">
<div class="modal-dialog modal-dialog-centered modal-lg">
<!--Modal content-->
<div class="modal-content">
<div class="modal-header">
<h5>GifTastic</h5>
</div>
<div class="modal-body">
<p>This project used the GIPHY API to make a dynamic web page that populates with
gifs of your choice.</p>
<h9>Technologies Used</h9>
<ul>
<li>Javascript</li>
<li>JQuery</li>
<li>AJAX</li>
<li>APIs</li>
<li>HTML5</li>
<li>CSS</li>
<li>Bootstrap</li>
</ul>
</div>
<div class="modal-footer">
<a class="text-secondary" href="https://github.com/aanielson/GifTastic">
<i class="fa fa-github fa-3x"></i>
</a>
<a href="https://aanielson.github.io/GifTastic/" class="project-link btn">Go to
project!</a>
<button type="button" class="btn" id="modal-button"
data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!--Train Scheduler Modal-->
<div id="myTrainScheduler" class="modal fade" role="dialog">
<div class="modal-dialog modal-dialog-centered modal-lg">
<!--Modal content-->
<div class="modal-content">
<div class="modal-header">
<h5>Train Scheduler</h5>
</div>
<div class="modal-body">
<p>This project showcases a train schedule application that incorporates Firebase to
host arrival and departure data. It retrieves and manipulates this information
with Moment.js. This website provides up-to-date information about various
trains, namely their arrival times and how many minutes remain until they arrive
at their station.</p>
<h9>Technologies Used</h9>
<ul>
<li>HTML5</li>
<li>CSS</li>
<li>Bootstrap</li>
<li>Firebase</li>
<li>Moment.js</li>
<li>Javascript</li>
<li>JQuery</li>
</ul>
</div>
<div class="modal-footer">
<a class="text-secondary" href="https://github.com/aanielson/Train-Scheduler">
<i class="fa fa-github fa-3x"></i>
</a>
<a href="https://aanielson.github.io/Train-Scheduler/" class="project-link btn">Go
to project!</a>
<button type="button" class="btn" id="modal-button"
data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!--Project 1/Hike&Forage modal-->
<div id="myGroupProject1" class="modal fade" role="dialog">
<div class="modal-dialog modal-dialog-centered modal-lg">
<!--Modal content-->
<div class="modal-content">
<div class="modal-header">
<h5>Hike & Forage Utah</h5>
</div>
<div class="modal-body">
<p>This was an important step in my full-stack journey as I used all the skills and
knowledge from the first third of my bootcamp to work with a group to build web
application from scratch. With my team, I conceived and executed a design that
solves a real-world problem by integrating data received from multiple
server-side API requests. Because we worked collaboratively, we practiced agile
development methodologies and implemented feature and bug fixes using the git
branch workflow and pull requests.</p>
<p>My role was integrating data received from multiple server-side API requests into
user-friendly formats while other teammates focused on front-end styling.</p>
<p>Our website was awarded “Most Overall Original Concept” for connecting users with
hikes to forage plants.</p>
<h9>Technologies Used</h9>
<ul>
<li>HTML5</li>
<li>CSS</li>
<li>Bootstrap</li>
<li>AJAX</li>
<li>Javascript</li>
<li>JQuery</li>
</ul>
</div>
<div class="modal-footer">
<a class="text-secondary" href="https://github.com/lindseypaluso/hikeandforageapp/">
<i class="fa fa-github fa-3x"></i>
</a>
<a href="https://lindseypaluso.github.io/hikeandforageapp"
class="project-link btn">Go to project!</a>
<button type="button" class="btn" id="modal-button"
data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!--LiriBot modal-->
<div id="myLiriBot" class="modal fade" role="dialog">
<div class="modal-dialog modal-dialog-centered modal-lg">
<!--Modal content-->
<div class="modal-content">
<div class="modal-header">
<h5>LiriBot</h5>
</div>
<div class="modal-body">
<p>LIRI is a command line node app that takes in parameters and gives back data –
similar to Apple's SIRI! This project's comands focus on songs, musicians, and
concerts</p>
<h9>Technologies Used</h9>
<ul>
<li>JavaScript</li>
<li>Node</li>
</ul>
</div>
<div class="modal-footer">
<a class="text-secondary btn btn-social-icon btn-github"
href="https://github.com/aanielson/liri-node-app">
<i class="fa fa-github fa-3x"></i>
</a>
<a href="https://youtu.be/gcZITZZOf_Q" class="text-secondary btn mr-3"><i
class="fa fa-youtube-play fa-3x" aria-hidden="true"></i></a>
<button type="button" class="btn" id="modal-button"
data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!--Bamazon modal-->
<div id="myBamazon" class="modal fade" role="dialog">
<div class="modal-dialog modal-dialog-centered modal-lg">
<!--Modal content-->
<div class="modal-content">
<div class="modal-header">
<h5>Bamazon</h5>
</div>
<div class="modal-body">
<p>In this app, I created an Amazon-like storefront. The app takes in orders from
"customers" and depletes stock from the store's inventory.</p>
<h9>Technologies Used</h9>
<ul>
<li>JavaScript</li>
<li>Node</li>
<li>MySQL</li>
</ul>
</div>
<div class="modal-footer">
<a class="text-secondary btn btn-social-icon btn-github"
href="https://github.com/aanielson/bamazonp">
<i class="fa fa-github fa-3x"></i>
</a>
<a href="https://youtu.be/Ym6n_Op2qH4" class="text-secondary btn mr-3"><i
class="fa fa-youtube-play fa-3x" aria-hidden="true"></i></a>
<button type="button" class="btn" id="modal-button"
data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!--Burger modal-->
<div id="myBurger" class="modal fade" role="dialog">
<div class="modal-dialog modal-dialog-centered modal-lg">
<!--Modal content-->
<div class="modal-content">
<div class="modal-header">
<h5>Burger</h5>
</div>
<div class="modal-body">
<p>In this app, I created a burger logger with MySQL, Node, Express, Handlebars and
a homemade ORM (yum!) following the MVC design pattern. Node and MySQL are used
to query and route data in the app, and Handlebars to generates the HTML.</p>
<h9>Technologies Used</h9>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>Node</li>
<li>MySQL</li>
<li>Express</li>
<li>Handelbars</li>
<li>Object Relational Mapping</li>
</ul>
</div>
<div class="modal-footer">
<a class="text-secondary btn btn-social-icon btn-github"
href="https://github.com/aanielson/burger">
<i class="fa fa-github fa-3x"></i>
</a>
<a href="https://youtu.be/nzJnNz6z6Ic" class="text-secondary btn"><i
class="fa fa-youtube-play fa-3x" aria-hidden="true"></i></a>
<a href="https://sheltered-shelf-74732.herokuapp.com/" class="project-link btn">Go
to project!</a>
<button type="button" class="btn" id="modal-button"
data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!--Friend Finder modal-->
<div id="myFriendFinder" class="modal fade" role="dialog">
<div class="modal-dialog modal-dialog-centered modal-lg">
<!--Modal content-->
<div class="modal-content">
<div class="modal-header">
<h5>Friend Finder</h5>
</div>
<div class="modal-body">
<p>In this activity, I built a compatibility-based "FriendFinder" application --
basically a dating app. This full-stack site takes in results from users'
surveys, then compares their answers with those from other users. The app will
then display the name and picture of the user with the best overall match.
Express handles routing, and the app is deployed to Heroku so other users can
fill it out.</p>
<h9>Technologies Used</h9>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>Bootstrap</li>
<li>Handelbars</li>
<li>JavaScript</li>
<li>jQuery</li>
<li>Node.js</li>
<li>MySQL</li>
<li>Express</li>
</ul>
</div>
<div class="modal-footer">
<a class="text-secondary btn btn-social-icon btn-github"
href="https://github.com/aanielson/friend-finder">
<i class="fa fa-github fa-3x"></i>
</a>
<a href="https://youtu.be/DPc9erbdPnE" class="text-secondary btn"><i
class="fa fa-youtube-play fa-3x" aria-hidden="true"></i></a>
<a href="https://aanielsonfriendfinder.herokuapp.com/" class="project-link btn">Go
to project!</a>
<button type="button" class="btn" id="modal-button"
data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!--Project2/AllyApp Modal-->
<div id="myAllyApp" class="modal fade" role="dialog">
<div class="modal-dialog modal-dialog-centered modal-lg">
<!--Modal content-->
<div class="modal-content">
<div class="modal-header">
<h5>The Ally App</h5>
</div>
<div class="modal-body">
<p>The Ally App is a place where people can go to learn more about how to combat
racial inequalities, view media resources that aid in combatting those
inequalities, get assistance from people seeking to be allies, give assistance,
and start petitions.</p>
<p>This full-stack, MVC (Model-View-Controller) application allows you to create
help posts and petitions (POST), update those help posts and petitions (PUT),
delete them as needed (DELETE), and view hundreds of resources from different
tables (GET).</p>
<h9>Technologies Used</h9>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>Bootstrap</li>
<li>Handelbars</li>
<li>JavaScript</li>
<li>jQuery</li>
<li>Node.js</li>
<li>MySQL</li>
<li>Sequelize</li>
<li>Express</li>
<li>Passport</li>
</ul>
</div>
<div class="modal-footer">
<a class="text-secondary btn btn-social-icon btn-github"
href="https://github.com/lindseypaluso/allyApp">
<i class="fa fa-github fa-3x"></i>
</a>
<a href="https://youtu.be/-wguloRb9Mw" class="text-secondary btn"><i
class="fa fa-youtube-play fa-3x" aria-hidden="true"></i></a>
<a href="https://ally-resources.herokuapp.com/ " class="project-link btn">Go to
project!</a>
<button type="button" class="btn" id="modal-button"
data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!--Project3/EvenCuriouser Modal-->
<div id="myEvenCuriouser" class="modal fade" role="dialog">
<div class="modal-dialog modal-dialog-centered modal-lg">
<!--Modal content-->
<div class="modal-content">
<div class="modal-header">
<h5>Even EvenCuriouser</h5>
</div>
<div class="modal-body">
<p>"EvenCuriouser" is a full stack application to help teachers and students have a
better teaching and learning experience.</p>
<p>School in 2020 has been hard for everyone, and jumping from one application to
another was a common complaint from teachers, students and parents.</p>
<p>This application was designed to try and bring all of the links, assignments,
grades, and messaging systems into one centralized location. Making school -
whether it's face to face, virtual, or hybrid - seamless and easy for everyone.
</p>
<h9>Technologies Used</h9>
<ul>
<li>React</li>
<li>CSS</li>
<li>Bootstrap</li>
<li>JavaScript</li>
<li>Node.js</li>
<li>MySQL</li>
<li>Sequelize</li>
<li>Express</li>
<li>NPM</li>
<li>JSX</li>
<li>Auth0</li>
</ul>
</div>
<div class="modal-footer">
<a class="text-secondary btn btn-social-icon btn-github"
href="https://github.com/lindseypaluso/evenCuriouser">
<i class="fa fa-github fa-3x"></i>
</a>
<a href="https://youtu.be/etqJMtu9AgA" class="text-secondary btn"><i
class="fa fa-youtube-play fa-3x" aria-hidden="true"></i></a>
<a href="https://even-curiouser.herokuapp.com/" class="project-link btn">Go to
project!</a>
<button type="button" class="btn" id="modal-button"
data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!--News Scraper modal-->
<div id="myNewsScraper" class="modal fade" role="dialog">
<div class="modal-dialog modal-dialog-centered modal-lg">
<!--Modal content-->
<div class="modal-content">
<div class="modal-header">
<h5>All The News That's Fit to Scrape</h5>
</div>
<div class="modal-body">
<p>Whenever a user visits this app, it scrapes the most recent stories from Deseret
News and displays them for the user. Each scraped article is saved to the
application database, then displayed using a GET request. Users then have the
option to save an article, which PUTs it in the "Saved" collection. This