-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
910 lines (873 loc) · 44.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="keywords" content="Personal, Portfolio, Creative, Instructional Designer" />
<meta name="description" content="Portfolio" />
<meta name="author" content="Dee Mullins" />
<title>Dee Mullins | Instructional Designer </title>
<!-- favicon -->
<link href="images/favicon.ico" rel="icon" type="image/png" />
<!--Font Awesome css-->
<script src="https://kit.fontawesome.com/38db1954c4.js" crossorigin="anonymous"></script>
<!--Bootstrap css-->
<link rel="stylesheet" href="css/bootstrap.css" />
<!--Owl Carousel css-->
<link rel="stylesheet" href="css/owl.carousel.min.css" />
<link rel="stylesheet" href="css/owl.theme.default.min.css" />
<!--Magnific Popup css-->
<link rel="stylesheet" href="css/magnific-popup.css" />
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Raleway:200,300,400,500,600,700,800,900%7cOpen+Sans:400,600,700,800"
rel="stylesheet" />
<!--Site Main Style css-->
<link rel="stylesheet" href="css/style.css" />
<!-- Global site tag (gtag.js) - Google Analytics
<script async="" src=""></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-122650090-1');
</script> -->
</head>
<body>
<!--Preloader-->
<div class="preloader">
<div class="loader"></div>
</div>
<!--Preloader-->
<!--Navbar Start-->
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container">
<!-- LOGO -->
<a class="navbar-brand logo" href="index.html"> <img src="images/logo.png" alt="logo" /> </a>
<button class="navbar-toggler collapsed" type="button" data-toggle="collapse" data-target="#navbarCollapse"
aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse collapse" id="navbarCollapse">
<ul class="navbar-nav ml-auto">
<!--Nav Links-->
<li class="nav-item">
<a href="#" class="nav-link active" data-scroll-nav="0">Home</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link" data-scroll-nav="1">About</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link" data-scroll-nav="2">Services</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link" data-scroll-nav="3">Work</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link" data-scroll-nav="4">News</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link" data-scroll-nav="5">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!--Navbar End-->
<!--Home Section Start-->
<section id="home" class="banner" style="
background-image: url('images/pexels-pixabay-509922.jpg');
height: 764px;
background-position: 0% 149.7px;
" data-stellar-background-ratio=".7" data-scroll-index="0">
<div class="container">
<!--Banner Content-->
<div class="banner-caption">
<h1>Hi! I'm Dee.</h1>
<p class="cd-headline clip mt-30">
<span>Instructional Designer & Developer located in Scottsdale,
Arizona.</span><br />
<span class="blc">Specialized in</span>
<span class="cd-words-wrapper" style="width: 341.141px">
<b class="is-hidden">creating world class courses.</b>
<b class="is-hidden">accessibility.</b>
<b class="is-visible">making interactive content.</b>
<b class="is-hidden">building websites.</b>
<b class="is-hidden">integrating tools.</b>
<b class="is-hidden">working with emerging technologies.</b>
<b class="is-hidden">scalable initiatives.</b>
</span>
</p>
</div>
<div class="arrow bounce">
<a class="fa fa-angle-double-down fa-3x" href="#" data-scroll-nav="1" aria-hidden="true"></a>
</div>
</div>
</section>
<!--Home Section End-->
<!--About Section Start-->
<section class="about pt-100 pb-100" data-scroll-index="1">
<div class="container">
<div class="row">
<div class="col-lg-5 col-md-6">
<!--About Image-->
<div class="about-img">
<img src="images/WozStaff-25.jpg" alt="Dee Mullins" />
</div>
</div>
<div class="col-lg-7 col-md-6">
<!--About Content-->
<div class="about-content">
<div class="about-heading">
<h2>About Me.</h2>
<span>Instructional Designer & Web Developer</span>
</div>
<p>Hi, I'm <b>Dee Mullins</b>. 👋🏼</p>
<p>
My journey into the world of tech began in 2017 when a CEO recognized my potential and
offered me the opportunity to work as a curriculum developer. Using Markdown, HTML, CSS,
and Javascript, I created courses on a custom-built LMS. That same year, I completed an
8-week program with <a href="https://girlsintech.org/" alt="girls in tech"
target="_blank">Girls in Tech</a>, where I learned WordPress and PHP and built my first
portfolio.
</p>
<p>
In early 2018, I was chosen to participate in a 12-week Front-End Web Development
Google Scholarship challenge in partnership with <a href="https://www.udacity.com/google"
alt="Google with Udacity" target="_blank">Udacity</a>. I was ranked among the
top 10% of the 15,000 participants and was granted a six-month Nanodegree in Web Development
from Google.
</p>
<p>
Since 2019, I have been working alongside faculty members at <a href="https://www.asu.edu/"
alt="ASU" target="_blank">Arizona State University</a> to create ground, hybrid, and
online courses. In 2020, I enrolled in the M.Ed in Learning Design and Technology program at
ASU,
and successfully completed it in 2022. I obtained my Six Sigma Yellow Belt certification
from ASU in
March 2023.
</p>
<p>
Presently, I am actively involved in the implementation of President Dr. Crows
<a href="https://dreamscapelearn.asu.edu/" alt="Dreamscape Learn" target="_blank">Dreamscape
Learn</a>
initiative, which integrates virtual reality in the classroom. My technical expertise,
including third-party
tool integration, LTI implementation, and the creation of interactive learning activities,
allows me to play
a key role in this initiative.
</p>
<p>
For me, happiness comes from accomplishing tasks, working hard, and continuously developing
my
skills. In addition, I enjoy my morning espresso, attending music festivals, and traveling
to
see the world and create memories.
</p>
<p>Thank you for stopping by!</p>
<!--About Social Icons-->
<div class="social-icons">
<a href="https://www.linkedin.com/in/dee-mullins/"><i class="fa fa-linkedin"
aria-hidden="true"></i></a>
<a href="https://twitter.com/its_deeeeeeeeee"><i class="fa fa-twitter"
aria-hidden="true"></i></a>
<a href="https://github.com/deemullins"><i class="fa fa-github" aria-hidden="true"></i></a>
</div>
<span class="about-button">
<a class="main-btn"
href="https://drive.google.com/uc?id=1YgVmKdw0V68_iLO3tK9S1dUj_6DTuL-p&export=download"
target="_blank">Download CV</a>
</span>
</div>
</div>
</div>
</div>
</section>
<!--About Section End-->
<!--Services Section Start-->
<section class="services bg-gray pt-100 pb-50" data-scroll-index="2">
<div class="container">
<div class="row">
<div class="col">
<div class="heading text-center">
<h6>Services</h6>
<h2>What I Can Do</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<!--Service Item-->
<div class="service-item">
<span class="icon">
<i class="fa fa-laptop" aria-hidden="true"></i>
</span>
<h4>Web Design</h4>
<p>
Custom built web sites using HTML, CSS, Bootstrap, Javascript,
React, WordPress, and Google Sites.
</p>
</div>
</div>
<div class="col-md-4">
<!--Service Item-->
<div class="service-item">
<span class="icon">
<i class="fa fa-gears" aria-hidden="true"></i>
</span>
<h4>Course Development</h4>
<p>
Specialize in designing and developing effective, engaging
learning experiences on platforms that include Canvas, Coursera,
edX, Open edX, Cornerstone, Rise, and custom code-based LMS's.
</p>
</div>
</div>
<div class="col-md-4">
<!--Service Item-->
<div class="service-item">
<span class="icon">
<i class="fa fa-mobile" aria-hidden="true"></i>
</span>
<h4>Responsive Design</h4>
<p>
Provide a seamless user experience and ensure that digital content is accessible,
readable, and functional on any device.
</p>
</div>
</div>
<div class="col-md-4">
<!--Service Item-->
<div class="service-item">
<span class="icon">
<i class="fa fa-rocket" aria-hidden="true"></i>
</span>
<h4>Integrations</h4>
<p>
Integration of 3rd party tools and LTI's including InScribe, Yellowdig, Gradarius,
Pearson, H5P, Perusall, Cerego, InSpark, PlayPosit, and Dreamscape Learn.
</p>
</div>
</div>
<div class="col-md-4">
<!--Service Item-->
<div class="service-item">
<span class="icon">
<i class="fa fa-pencil" aria-hidden="true"></i>
</span>
<h4>Creative Design</h4>
<p>
Thinking outside the box bringing web development ideas to
education using HTML5, CSS, Markdown, and Latex.
</p>
</div>
</div>
<div class="col-md-4">
<!--Service Item-->
<div class="service-item">
<span class="icon">
<i class="fa fa-universal-access" aria-hidden="true"></i>
</span>
<h4>Accessibility</h4>
<p>
Ensure compliance with <a href="https://www.w3.org/WAI/standards-guidelines/wcag/"
alt="Web Content Accessibility Guidelines" target="_blank">WCAG</a>
accessibility guidelines by integrating alternative text, transcripts,
tags, screen readers, and color schemes that are safe for all users, in order to provide
inclusive access.
</p>
</div>
</div>
</div>
</div>
</section>
<!--Services Section End-->
<!--Stats Section Start-->
<!--<section class="stats pt-100 pb-100" style="background-image: url('images/background/stats-bg.jpg')">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6"> -->
<!--Stats Item-->
<!--<div class="single-stat">
<span class="stat-icon">
<i class="fa fa-users" aria-hidden="true"></i>
</span>
<h2 class="counter" data-count="220">10</h2>
<p>Happy Clients</p>
</div>
</div>
<div class="col-lg-3 col-md-6"> -->
<!--Stats Item-->
<!--<div class="single-stat">
<span class="stat-icon">
<i class="fa fa-thumbs-up" aria-hidden="true"></i>
</span>
<h2 class="counter" data-count="700">20</h2>
<p>Projects Completed</p>
</div>
</div>
<div class="col-lg-3 col-md-6"> -->
<!--Stats Item-->
<!--<div class="single-stat">
<span class="stat-icon">
<i class="fa fa-edit" aria-hidden="true"></i>
</span>
<h2 class="counter" data-count="1100">10</h2>
<p>Lines Of Code</p>
</div>
</div>
<div class="col-lg-3 col-md-6"> -->
<!--Stats Item-->
<!--<div class="single-stat">
<span class="stat-icon">
<i class="fa fa-trophy" aria-hidden="true"></i>
</span>
<h2 class="counter" data-count="160">15</h2>
<p>Awards Achieved</p>
</div>
</div>
</div>
</div>
</section> -->
<!--Stats Section End-->
<!--Portfolio Section Start-->
<section class="portfolio pt-100 pb-70" data-scroll-index="3">
<div class="container">
<div class="row">
<div class="col">
<div class="heading text-center">
<h6>Portfolio</h6>
<h2>Work I Have Done</h2>
</div>
<div class="portfolio-filter text-center">
<ul>
<li class="sel-item" data-filter="*">All</li>
<li data-filter=".design">Web Design</li>
<li data-filter=".application">Applications</li>
<li data-filter=".development">Course Development</li>
</ul>
<br />
</div>
</div>
</div>
<!--First row-->
<div class="row portfolio-items">
<!--Portfolio Item-->
<div class="col-lg-4 col-md-6 item application">
<div class="item-content">
<img src="images/pixelart.png" alt="Pixel Art Maker Project" />
<div class="item-overlay">
<h6>Application</h6>
<p>
Built using HTML, CSS, and Javascript. Visit the
<a href="https://deemullins.com/pixel_art_maker/" target="_blank">Art Maker</a>.
</p>
<div class="icons">
<span class="icon link">
<a href="images/pixelart.png">
<i class="fa fa-search" aria-hidden="true"></i>
</a>
</span>
</div>
</div>
</div>
</div>
<!--Portfolio Item-->
<div class="col-lg-4 col-md-6 item application">
<div class="item-content">
<img src="images/arcadegame.png" alt="Classic Arcade Game" />
<div class="item-overlay">
<h6>Application</h6>
<p>
Built using HTML, CSS, and Javascript. Visit the
<a href="https://deemullins.com/Classic-Arcade-Game/" target="_blank">Classic Arcade
Game</a> to play.
</p>
<div class="icons">
<span class="icon link">
<a href="images/arcadegame.png">
<i class="fa fa-search" aria-hidden="true"></i>
</a>
</span>
</div>
</div>
</div>
</div>
<!--Portfolio Item-->
<div class="col-lg-4 col-md-6 item design">
<div class="item-content">
<img src="images/wedding.png" alt="my wedding website" />
<div class="item-overlay">
<h6>Web Design</h6>
<p>
Built as a project for my wedding. Used HTML, CSS, Javascript,
and Bootstrap. Visit my wedding website,
<a href="http://adventuresofdeeandeli.com/" target="_blank">Adventures of Dee and
Eli</a>.
</p>
<div class="icons">
<span class="icon link">
<a href="images/wedding.png">
<i class="fa fa-search" aria-hidden="true"></i>
</a>
</span>
</div>
</div>
</div>
</div>
<!--Second row-->
<!--Portfolio Item-->
<div class="col-lg-4 col-md-6 item application">
<div class="item-content">
<img src="images/matching.png" alt="Memory Game" />
<div class="item-overlay">
<h6>Application</h6>
<p>
Built using HTML, CSS, Javascript, and jQuery. Visit the
<a href="https://deemullins.com/memory_game/" target="_blank">Memory Game</a> to play.
</p>
<div class="icons">
<span class="icon link">
<a href="images/matching.png">
<i class="fa fa-search" aria-hidden="true"></i>
</a>
</span>
</div>
</div>
</div>
</div>
<!--Portfolio Item-->
<div class="col-lg-4 col-md-6 item design">
<div class="item-content">
<img src="images/gwgportfolio.png" alt="Grow with Google Portfolio" />
<div class="item-overlay">
<h6>Web Design</h6>
<p>
A project for the Grow with Google program using HTML5 & CSS.
Visit my
<a href="https://deemullins.com/GWG-Portfolio/" target="_blank">Grow with Google
Portfolio</a>.
</p>
<div class="icons">
<span class="icon link">
<a href="images/gwgportfolio.png">
<i class="fa fa-search" aria-hidden="true"></i>
</a>
</span>
</div>
</div>
</div>
</div>
<!--Portfolio Item-->
<div class="col-lg-4 col-md-6 item design">
<div class="item-content">
<img src="images/EDTportfolio.png" alt="EDT Portfolio" />
<div class="item-overlay">
<h6>Web Design</h6>
<p>
A portfolio built for my Masters program EDT course. Visit my
<a href="https://sites.google.com/asu.edu/dees-portfolio/home" target="_blank">EDT
Portfolio</a>.
</p>
<div class="icons">
<span class="icon link">
<a href="images/EDTportfolio.png">
<i class="fa fa-search" aria-hidden="true"></i>
</a>
</span>
</div>
</div>
</div>
</div>
<!--Portfolio Item-->
<div class="col-lg-4 col-md-6 item design">
<div class="item-content">
<img src="images/InclusiveCommunities.jpg" alt="Inclusive Communities" />
<div class="item-overlay">
<h6>Web Design</h6>
<p>
<a href="https://eoss.asu.edu/student-and-cultural-engagement/resources/everfi#takeprogram"
target="_blank">
Inclusive Communities</a> was created for the Office of Human Resources as part of
<a href="https://president.asu.edu/commitment" target="_blank">ASU's Lift Initiative</a>
with the School of
Social Transformation. Every two years, staff, faculty, and students are required to
complete
the DEIB training.
</p>
<div class="icons">
<span class="icon link">
<a href="images/InclusiveCommunities.jpg">
<i class="fa fa-search" aria-hidden="true"></i>
</a>
</span>
</div>
</div>
</div>
</div>
<!--Third row-->
<!--Portfolio Item-->
<div class="col-lg-4 col-md-6 item development">
<div class="item-content">
<img src="images/bio.png" alt="The Living World" />
<div class="item-overlay">
<h6>Course Development</h6>
<p>
BIO100: The Living World. Built on the Open edX LMS using Inscribe &
Inspark/Smartsparrow. Visit
<a href="https://ea.asu.edu/courses/the-living-world-bio-100/" target="_blank">The
Living World</a> page for more information.
</p>
<div class="icons">
<span class="icon link">
<a href="images/bio.png">
<i class="fa fa-search" aria-hidden="true"></i>
</a>
</span>
</div>
</div>
</div>
</div>
<!--Portfolio Item-->
<div class="col-lg-4 col-md-6 item development">
<div class="item-content">
<img src="images/eng194.png" alt="Poetry in America" />
<div class="item-overlay">
<h6>Course Development</h6>
<p>
ENG131: Poetry in America. Built on the Open edX LMS using Yellowdig in partnership with
Harvard. A
<a href="https://www.nytimes.com/2021/02/18/us/politics/college-admissions-poor-students.html"
target="_blank">New York Times article</a>
was published about the work. Visit the
<a href="https://www.poetryinamerica.org/programs/poetry-in-america-the-city-from-whitman-to-hip-hop/"
target="_blank">Poetry in America</a>
page for more information.
</p>
<div class="icons">
<span class="icon link">
<a href="images/eng194.png">
<i class="fa fa-search" aria-hidden="true"></i>
</a>
</span>
</div>
</div>
</div>
</div>
<!--Portfolio Item-->
<div class="col-lg-4 col-md-6 item development">
<div class="item-content">
<img src="images/sst.png" alt="Introduction to Social Transformation" />
<div class="item-overlay">
<h6>Course Development</h6>
<p>
SST220: Introduction to Social Transformation. Built on the Open edX LMS with the <a
href="https://sst.asu.edu/" alt="School of Social Transformation"
target="_blank">School of
Social Transformation</a>. Subjects included justice, race and racism, class
inequality, and many more. Uses Yellowdig, reflection essays, and a design project.
</p>
<div class="icons">
<span class="icon link">
<a href="images/sst.png">
<i class="fa fa-search" aria-hidden="true"></i>
</a>
</span>
</div>
</div>
</div>
</div>
<!--Portfolio Item-->
<div class="col-lg-4 col-md-6 item development">
<div class="item-content">
<img src="images/DSL182.jpg" alt="Bio 182 with Dreamscape Learn" />
<div class="item-overlay">
<h6>Course Development</h6>
<p>
BIO181/BIO182: General Biology. Built on Canvas LMS using Dreamscape Learn Virtual
Reality for BioSpine courses. An
<a href="https://news.asu.edu/20221021-creativity-vr-biology-lab-experience-leads-student-success"
target="_blank">ASU News article</a> was published about the work. Visit the
<a href="https://dreamscapelearn.asu.edu/student-experience/" target="_blank">ASU's
Dreamscape Learn</a> page for more information.
</p>
<div class="icons">
<span class="icon link">
<a href="images/DSL182.jpg">
<i class="fa fa-search" aria-hidden="true"></i>
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Portfolio Section End-->
<!--Blog Section Start-->
<section class="blogs pt-100 pb-100 bg-gray" data-scroll-index="4">
<div class="container">
<div class="row">
<div class="col text-center">
<div class="heading text-center">
<h6>Blog</h6>
<h2>Latest News</h2>
</div>
</div>
</div>
<div class="row">
<div class="owl-carousel owl-theme">
<!--Blogs Item-->
<div class="blog-item">
<div class="blog-img">
<!-- <a href="single-blog.html"> -->
<img src="images/NYTHarvard.png" alt="NYT Harvard article">
</a>
</div>
<div class="blog-content">
<h3>New York Times Article</h3>
<p>Poetry in America was featured in a <a
href="https://www.nytimes.com/2021/02/18/us/politics/college-admissions-poor-students.html?smid=url-share"
target="_blank"> New York Times article</a> discussing how we are connecting with
underprivileged students.
</p>
<div class="blog-meta">
<span class="more">
<a href="https://www.nytimes.com/2021/02/18/us/politics/college-admissions-poor-students.html?smid=url-share"
target="_blank">Read the article</a>
</span>
<span class="date">
18/February/2021
</span>
</div>
</div>
</div>
<!--Blogs Item-->
<div class="blog-item">
<div class="blog-img">
<!-- <a href="single-blog.html"> -->
<img src="images/HE-Sixth-Edition-Rubric-Workbook-Cover-no-outline-300pxtall.jpeg"
alt="Quality Matters">
</a>
</div>
<div class="blog-content">
<h3>Quality Matters Certification</h3>
<div class="blog-meta">
<span class="more">
<a href="https://drive.google.com/file/d/1xB1iUGzkYGVHTg5b53qHzhdA04xmh9oQ/view?usp=sharing"
target="_blank">View Cert</a>
</span>
<span class="date">
17/December/2019
</span>
</div>
</div>
</div>
<!--Blogs Item-->
<div class="blog-item">
<div class="blog-img">
<!-- <a href="single-blog.html"> -->
<img src="images/GACP Summer 21.png" alt="Global Advocacy Certificate">
</a>
</div>
<div class="blog-content">
<h3>Global Advocacy Certificate</h3>
<div class="blog-meta">
<span class="more">
<a href="https://drive.google.com/file/d/13bs_xaMJCnjuz0I4r2xklFn_HfVxCf8f/view?usp=sharing"
target="_blank">View Cert</a>
</span>
<span class="date">
2/August/2021
</span>
</div>
</div>
</div>
<!--Blogs Item-->
<div class="blog-item">
<div class="blog-img">
<!-- <a href="single-blog.html"> -->
<img src="images/Adv GACP Handout.png" alt="Advanced Global Advocate certificate">
</a>
</div>
<div class="blog-content">
<h3>Advanced Global Advocate Certificate</h3>
<div class="blog-meta">
<span class="more">
<a href="https://drive.google.com/file/d/1S6jjSwb_lEUfMsFAPnqOgbX2yubchrP5/view?usp=sharing"
target="_blank">View Cert</a>
</span>
<span class="date">
22/November/2022
</span>
</div>
</div>
</div>
<!--Blogs Item-->
<div class="blog-item">
<div class="blog-img">
<!-- <a href="single-blog.html"> -->
<img src="images/SixSigma.png" alt="Six Sigma Yellow Belt certificate">
</a>
</div>
<div class="blog-content">
<h3>Six Sigma Yellow Belt Certificate</h3>
<div class="blog-meta">
<span class="more">
<a href="https://drive.google.com/file/d/1jzCggOquXPVwkdjm3B5k2LTqzXga_jYr/view?usp=sharing"
target="_blank">View Cert</a>
</span>
<span class="date">
22/March/2023
</span>
</div>
</div>
</div>
</div>
</section>
<!--Blog Section End-->
<!--Testimonials Section Start-->
<!--<section class="testimonials pt-100 pb-100" style="background-image: url('images/background/testimonials-bg.jpg')">
<div class="container">
<div class="row">
<div class="col-lg-10 offset-lg-1">
<div class="owl-carousel owl-theme text-center"> -->
<!--Testimonials Item-->
<!-- <div class="testimonial-item">
<div class="author-img">
<img src="images/testimonial/img-1.jpg" alt="">
</div>
<h5>Mr John Doe</h5>
<span>Creative Director</span>
<p>Dolor facilis veritatis doloremque dicta eos Voluptate earum nulla ad et esse Saepe asperiores nisi facere ipsam corporis. Dolorem praesentium tenetur tempore dolorem illum autem? Veritatis fuga quasi sunt tenetur. Expedita id eaque incidunt beatae nesciunt! In similique exercitationem tempore excepturi placeat Nostrum ducimus dicta temporibus quas!</p>
</div> -->
<!--Testimonials Item-->
<!-- <div class="testimonial-item">
<div class="author-img">
<img src="images/testimonial/img-1.jpg" alt="">
</div>
<h5>Mr John Doe</h5>
<span>Creative Director</span>
<p>Dolor facilis veritatis doloremque dicta eos Voluptate earum nulla ad et esse Saepe asperiores nisi facere ipsam corporis. Dolorem praesentium tenetur tempore dolorem illum autem? Veritatis fuga quasi sunt tenetur. Expedita id eaque incidunt beatae nesciunt! In similique exercitationem tempore excepturi placeat Nostrum ducimus dicta temporibus quas!</p>
</div> -->
<!--Testimonials Item-->
<!-- <div class="testimonial-item">
<div class="author-img">
<img src="images/testimonial/img-1.jpg" alt="">
</div>
<h5>Mr John Doe</h5>
<span>Creative Director</span>
<p>Dolor facilis veritatis doloremque dicta eos Voluptate earum nulla ad et esse Saepe asperiores nisi facere ipsam corporis. Dolorem praesentium tenetur tempore dolorem illum autem? Veritatis fuga quasi sunt tenetur. Expedita id eaque incidunt beatae nesciunt! In similique exercitationem tempore excepturi placeat Nostrum ducimus dicta temporibus quas!</p>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!--Testimonials Section End-->
<!--Contact Section Start-->
<!-- <section class="contact pt-100 pb-100" data-scroll-index="5">
<div class="container">
<div class="row">
<div class="col text-center">
<div class="heading">
<h6>Contact</h6>
<h2>Get In Touch</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-10 offset-lg-1"> -->
<!--Contact Form-->
<!-- <form id='contact-form' method='POST'><input type='hidden' name='form-name' value='contactForm' />
<div class="row">
<div class="col-md-6 form-group"> -->
<!--name-->
<!-- <input type="text" class="form-control con-validate" id="contact-name" placeholder="Name" minlength=3 >
</div>
<div class="col-md-6 form-group"> -->
<!--email-->
<!-- <input type="email" class="form-control con-validate" id="contact-email" placeholder="Email" >
</div>
<div class="col-md-12 form-group"> -->
<!--message box-->
<!-- <textarea class="form-control con-validate" id="contact-message" placeholder="How can we help you?" rows=6 ></textarea>
</div>
<div class="col-md-12 text-center"> -->
<!--contact button-->
<!-- <button id="contact-submit" class="mt-30 main-btn">
Send Message
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</section> -->
<!--Contact Section End-->
<!--Footer Start-->
<footer class="pt-50 pb-50">
<div class="container">
<section data-scroll-index="5"></section>
<div class="row text-center">
<div class="col-md-3 col-sm-6">
<!--Contant Item-->
<div class="contact-info">
<h5><i class="far fa-address-card fa-3x"></i></h5>
</div>
</div>
<div class="col-md-3 col-sm-6">
<!--Contant Item-->
<div class="contact-info">
<h5>Phone No.</h5>
<p>Please message for more information.</p>
</div>
</div>
<div class="col-md-3 col-sm-6">
<!--Contant Item-->
<div class="contact-info">
<h5>Email</h5>
<p>
<a href="mailto: [email protected]" target="_blank" style="color:white">[email protected]</a>
</p>
</div>
</div>
<div class="col-md-3 col-sm-6">
<!--Contant Item-->
<div class="contact-info">
<h5>Location</h5>
<p>Scottsdale, Arizona, USA.</p>
</div>
</div>
</div>
<div class="row text-center">
<div class="col-md-12">
<hr />
<p class="copy pt-30">Dee Mullins © 2023. All Right Reserved.</p>
</div>
</div>
</div>
</footer>
<!--Footer End-->
<!--Jquery js-->
<script src="https://code.jquery.com/jquery-3.0.0.min.js"></script>
<!--Bootstrap js-->
<script src="js/bootstrap.min.js"></script>
<!--Stellar js-->
<script src="js/jquery.stellar.js"></script>
<!--Animated Headline js-->
<script src="js/animated.headline.js"></script>
<!--Owl Carousel js-->
<script src="js/owl.carousel.min.js"></script>
<!--ScrollIt js-->
<script src="js/scrollIt.min.js"></script>
<!--Isotope js-->
<script src="js/isotope.pkgd.min.js"></script>
<!--Magnific Popup js-->
<script src="js/jquery.magnific-popup.min.js"></script>
<!--Site Main js-->
<script src="js/main.js"></script>
</body>
</html>