generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
1486 lines (1375 loc) · 60.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
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>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<!-- SEO meta description-->
<meta name="description"
content="Are you looking to hire a junior developer? Take a look at my portfolio which showcases recent projects I have been working on and a downloadable CV. Built using BootStrap, check out my experience, qualifications & skills. I look forward to hearing from you" />
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous" />
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous" />
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hover.css/2.1.1/css/hover-min.css"
type="text/css" />
<!-- Fav icon -->
<link rel="icon" type="image/png" href="assets/images/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="assets/images/favicon-16x16.png" sizes="16x16" />
<link rel="shortcut icon" type="img/png" href="/assets/images/favicon.png" />
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
<link rel="stylesheet" type="text/css" href="assets/css/dark.css" />
<!-- SEO Page Title-->
<title>CodeSonia | Junior Full Stack Developer</title>
</head>
<body>
<header id="land">
<!-- Navbar Starts -->
<nav class="
navbar navbar-light navbar-expand-lg
nav
mb-auto
fixed-top
dark-navbar
">
<div class="container">
<!-- Navbar Brand -->
<a class="navbar-brand ml-md-2" href="#land">
<img class="logo" src="assets/images/code_sonia_logo.png" alt="CodeSonia logo" />
</a>
<!-- Navbar Collapse Function -->
<button class="navbar-toggler second-button clearfix" type="button" data-toggle="collapse"
data-target="#navbarHeader" aria-controls="navbarHeader" aria-expanded="false" aria-label="Toggle navigation">
<span class="animated-icon2">
<span></span><span></span><span></span><span></span>
</span>
</button>
<!-- Navbar Collapse Content -->
<div class="collapse navbar-collapse mr-md-3" id="navbarHeader">
<!-- Navbar Links -->
<ul class="navbar-nav ml-auto float-right text-right">
<li class="nav-item active">
<a class="nav-link hvr-underline-from-center" href="#home">Home <span class="sr-only">(current home
page)</span></a>
</li>
<li class="nav-item dark-nav">
<a class="nav-link hvr-underline-from-center" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link hvr-underline-from-center" href="#skills">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link hvr-underline-from-center" href="#portfolio">Portfolio</a>
</li>
<li class="nav-item">
<a class="nav-link hvr-underline-from-center" href="#projects">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link hvr-underline-from-center" href="#experience">Experience</a>
</li>
<li class="nav-item">
<a class="nav-link hvr-underline-from-center" href="#education">Education</a>
</li>
<li class="nav-item">
<a class="nav-link hvr-underline-from-center" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!-- Landing Page -->
<section class="container home" id="home">
<div class="switch">
Dark mode:
<span class="inner-switch">OFF</span>
</div>
<div class="row">
<!-- LEFT -->
<div class="col">
<!--Job Title-->
<div class="row">
<div class="col">
<h2 class="title-role">Junior Developer</h2>
</div>
</div>
<!-- Name -->
<div class="row">
<div class="col">
<h1 class="name">Sonia Hussain</h1>
</div>
</div>
<!-- Animation / Welcome to my portfolio -->
<div class="row d-none d-lg-block">
<div class="col">
<div class="container-animation">
<div id="flip">
<div>
<div>Hey there!</div>
</div>
<div>
<div>I am a Junior Stack Developer</div>
</div>
<div>
<div>Welcome to my portfolio</div>
</div>
</div>
</div>
</div>
</div>
<!-- Description -->
<div class="row d-none d-lg-block">
<div class="col">
<p class="intro-text mt-3">
Aspiring Web Developer. Based in Birmingham. Love learning new technologies & developing high-quality
websites & applications for businesses & users.
</p>
</div>
</div>
<!-- Landing page Image (Mobile) -->
<div class="row d-lg-none .d-xl-block">
<div class="col">
<img class="img-size hidden-lg" src="assets/images/landPage.png"
alt="vector image of female coding working environment" />
</div>
</div>
<!-- Social media links -->
<div class="row">
<div class="col">
<ul class="
social-links
d-flex
justify-content-center justify-content-lg-start
">
<li>
<a href="https://github.com/CodeSonia" target="_blank">
<i class="fa fa-github" aria-hidden="true"></i>
<span class="sr-only">GitHub button</span>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/sonia-akhtar-hussain/" target="_blank">
<i class="fa fa-linkedin" aria-hidden="true"></i>
<span class="sr-only">LinkedIn button</span>
</a>
</li>
<li>
<a href="https://www.instagram.com/____xxis4h/" target="_blank"><i class="fa fa-instagram"
aria-hidden="true"></i>
<span class="sr-only">Instagram button</span>
</a>
</li>
<!-- Please note I have not linked my FB account -->
<li>
<a href="https://www.facebook.com/" target="_blank"><i class="fa fa-facebook-square"
aria-hidden="true"></i>
<span class="sr-only">Facebook button</span>
</a>
</li>
</ul>
</div>
</div>
<!-- Download CV button -->
<div class="row">
<div class="col">
<a class="btn btn-std-style primary-button mt-2" href="assets/cv/sonia's_cv.pdf" target="_blank" rel="noopener"
role="button" aria-label="link to Sonia's CV in a PDF format">
Download CV
</a>
</div>
<div class="col">
<a class="btn btn-std-style secondary-button mt-2" href="#contact" role="button">
Hire Me
</a>
</div>
</div>
</div>
<!-- Right -->
<div class="col-8 d-none d-lg-block">
<!-- Landing page Image (Desktop) -->
<div class="row">
<div class="col">
<img class="img-size" src="assets/images/landPage.png" alt="vector graphic of female working on coding" />
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section class="container about mt-4" id="about">
<h4 class="text-center pt-4">About</h4>
<hr class="block block-light" />
<!--Left about-->
<div class="row">
<!--Sonia intro-->
<div class="col-md-12 col-lg-6">
<div class="card m-3 shadow">
<div class="card-body">
<h5 class="card-title">Hi, I'm Sonia. Nice to meet you!</h5>
<p class="card-text">
During 2021, I decided to take a leap of faith and trained to
become a full stack developer with Code Institute.
</p>
<p>
Now, a fully-pledged developer, there is nothing more I enjoy
than designing and developing cool websites.
</p>
<p>
Got a cool project in mind or looking to hire a developer?
<a href="#contact" class="get-in-touch">Get in touch, </a>and we
can bring your idea to life.
</p>
</div>
</div>
</div>
<!--Right about-->
<div class="col-md-12 col-lg-6">
<!--Personal Detials card-->
<div class="card m-3 shadow about-height">
<div class="card-body">
<h5 class="card-title">Personal Details:</h5>
<div class="row">
<div class="col-sm-5">
<p><strong>Mobile Number:</strong></p>
</div>
<div class="col-sm-7">
<a href="tel:07768602137" class="about-links">
<p>077 686 02137</p>
</a>
</div>
</div>
<div class="row">
<div class="col-sm-5">
<p><strong>Email:</strong></p>
</div>
<div class="col-sm-7">
<a href="mailto:[email protected]" class="about-links">
<p>[email protected]</p>
</a>
</div>
</div>
<div class="row">
<div class="col-sm-5">
<p><strong>Location:</strong></p>
</div>
<div class="col-sm-7">
<p>Birmingham, UK</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section class="container skills mt-4" id="skills">
<h4 class="pt-4 text-center">Skills</h4>
<hr class="block" />
<!-- Tech Skills Grid start -->
<div class="row">
<!--Tech Skills Col left-->
<div class="col-sm-12 col-lg-5 m-3 shadow tech-skills">
<p class="text-center h5 pt-2">Tech Skills</p>
<hr class="block block-blue block-short" />
<!--Html progress bar-->
<div class="col">
<div class="mt-4 mb-1 clearfix skill-title">
<span>Affinity Photo</span>
<span class="float-right">80%</span>
</div>
<div class="progress md-progress" style="height: 20px">
<div class="progress-bar hvr-grow-shadow" role="progressbar" style="width: 80%; height: 20px"
aria-valuenow="80" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="col">
<div class="mt-4 mb-1 clearfix skill-title">
<span>Affinity Designer</span>
<span class="float-right">75%</span>
</div>
<div class="progress md-progress" style="height: 20px">
<div class="progress-bar hvr-grow-shadow" role="progressbar" style="width: 75%; height: 20px"
aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="col">
<div class="mt-4 mb-1 clearfix skill-title">
<span>HTML</span>
<span class="float-right">70%</span>
</div>
<div class="progress md-progress" style="height: 20px">
<div class="progress-bar hvr-grow-shadow" role="progressbar" style="width: 70%; height: 20px"
aria-valuenow="70" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="col">
<div class="mt-4 mb-1 clearfix skill-title">
<span>CSS</span>
<span class="float-right">60%</span>
</div>
<div class="progress md-progress" style="height: 20px">
<div class="progress-bar hvr-grow-shadow" role="progressbar" style="width: 60%; height: 20px"
aria-valuenow="60" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="col">
<div class="mt-4 mb-1 clearfix skill-title">
<span>Bootstrap</span>
<span class="float-right">50%</span>
</div>
<div class="progress md-progress" style="height: 20px">
<div class="progress-bar hvr-grow-shadow" role="progressbar" style="width: 50%; height: 20px"
aria-valuenow="50" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<div class="col-lg-1"></div>
<!-- Strengths Col Right -->
<div class="col-sm-12 col-lg-5 m-3 shadow soft-skills">
<p class="text-center h5 pt-2">Strengths</p>
<hr class="block block-blue block-short" />
<!--1st row of circles taken and amended from https://codepen.io/sandersu/pen/gerEbM-->
<div class="row">
<div class="col-md-12">
<div class="row">
<!--1st circle-->
<div class="col">
<div class="svg-item hvr-bob">
<svg width="100%" height="100%" viewbox="0 0 40 40" class="donut">
<circle class="donut-hole" cx="20" cy="20" r="15.91549430918954" fill="#fff"></circle>
<circle class="donut-ring" cx="20" cy="20" r="15.91549430918954" fill="transparent"
stroke-width="6"></circle>
<circle class="donut-segment" cx="20" cy="20" r="15.91549430918954" fill="transparent"
stroke-width="6" stroke-dasharray="100 0" stroke-dashoffset="25"></circle>
<g class="donut-text">
<text y="51%" transform="translate(0, 2)">
<tspan x="54%" text-anchor="middle" class="donut-percent">
100%
</tspan>
</text>
</g>
</svg>
</div>
<p class="text-center skill-title">Passion</p>
</div>
<!--2nd circle-->
<div class="col">
<div class="svg-item hvr-bob">
<svg width="100%" height="100%" viewbox="0 0 40 40" class="donut">
<circle class="donut-hole" cx="20" cy="20" r="15.91549430918954" fill="#fff"></circle>
<circle class="donut-ring" cx="20" cy="20" r="15.91549430918954" fill="transparent"
stroke-width="6"></circle>
<circle class="donut-segment" cx="20" cy="20" r="15.91549430918954" fill="transparent"
stroke-width="6" stroke-dasharray="100 0" stroke-dashoffset="25"></circle>
<g class="donut-text">
<text y="51%" transform="translate(0, 2)">
<tspan x="54%" text-anchor="middle" class="donut-percent">
100%
</tspan>
</text>
</g>
</svg>
</div>
<p class="text-center skill-title">Dedication</p>
</div>
<!--3rd circle-->
<div class="col d-none d-md-block">
<div class="svg-item hvr-bob">
<svg width="100%" height="100%" viewbox="0 0 40 40" class="donut">
<circle class="donut-hole" cx="20" cy="20" r="15.91549430918954" fill="#fff"></circle>
<circle class="donut-ring" cx="20" cy="20" r="15.91549430918954" fill="transparent"
stroke-width="6"></circle>
<circle class="donut-segment" cx="20" cy="20" r="15.91549430918954" fill="transparent"
stroke-width="6" stroke-dasharray="90 10" stroke-dashoffset="25"></circle>
<g class="donut-text">
<text y="51%" transform="translate(0, 2)">
<tspan x="54%" text-anchor="middle" class="donut-percent">
90%
</tspan>
</text>
</g>
</svg>
</div>
<p class="text-center skill-title">Strong Team Player</p>
</div>
</div>
<div class="row">
<!--1st circle-->
<div class="col">
<div class="svg-item hvr-bob">
<svg width="100%" height="100%" viewbox="0 0 40 40" class="donut">
<circle class="donut-hole" cx="20" cy="20" r="15.91549430918954" fill="#fff"></circle>
<circle class="donut-ring" cx="20" cy="20" r="15.91549430918954" fill="transparent"
stroke-width="6"></circle>
<circle class="donut-segment" cx="20" cy="20" r="15.91549430918954" fill="transparent"
stroke-width="6" stroke-dasharray="90 10" stroke-dashoffset="25"></circle>
<g class="donut-text">
<text y="51%" transform="translate(0, 2)">
<tspan x="54%" text-anchor="middle" class="donut-percent">
90%
</tspan>
</text>
</g>
</svg>
</div>
<p class="text-center skill-title">Highly-Organised</p>
</div>
<!--2nd circle-->
<div class="col">
<div class="svg-item hvr-bob">
<svg width="100%" height="100%" viewbox="0 0 40 40" class="donut">
<circle class="donut-hole" cx="20" cy="20" r="15.91549430918954" fill="#fff"></circle>
<circle class="donut-ring" cx="20" cy="20" r="15.91549430918954" fill="transparent"
stroke-width="6"></circle>
<circle class="donut-segment" cx="20" cy="20" r="15.91549430918954" fill="transparent"
stroke-width="6" stroke-dasharray="85 15" stroke-dashoffset="25"></circle>
<g class="donut-text">
<text y="51%" transform="translate(0, 2)">
<tspan x="54%" text-anchor="middle" class="donut-percent">
85%
</tspan>
</text>
</g>
</svg>
</div>
<p class="text-center skill-title">Pro-Active</p>
</div>
<!--3rd circle-->
<div class="col d-none d-md-block">
<div class="svg-item hvr-bob">
<svg width="100%" height="100%" viewbox="0 0 40 40" class="donut">
<circle class="donut-hole" cx="20" cy="20" r="15.91549430918954" fill="#fff"></circle>
<circle class="donut-ring" cx="20" cy="20" r="15.91549430918954" fill="transparent"
stroke-width="6"></circle>
<circle class="donut-segment" cx="20" cy="20" r="15.91549430918954" fill="transparent"
stroke-width="6" stroke-dasharray="80 20" stroke-dashoffset="25"></circle>
<g class="donut-text">
<text y="51%" transform="translate(0, 2)">
<tspan x="54%" text-anchor="middle" class="donut-percent">
80%
</tspan>
</text>
</g>
</svg>
</div>
<p class="text-center skill-title">
Build strong relationships
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Portfolio Section start -->
<section class="container mt-4 pb-3" id="portfolio">
<h4 class="pt-4 text-center">Portfolio</h4>
<hr class="block block-purple" />
<!-- Grid start -->
<h6 class="portfolio-intro text-center">
From an idea on paper to a fully-functional live site, below is a brief
overview of how I approach each project.
</h6>
<div class="row mx-1 mt-4 mb-3 shadow">
<div class="col">
<div class="row pt-1">
<div class="col-sm-12 col-md-4 col-lg-3 vertical-align">
<img src="assets/images/strategy.png" class="img-size portfolio-img hvr-grow-shadow"
alt="vector graphic on user research" />
</div>
<div class="col pt-1">
<h6 class="step-title my-2">
<span class="step">Step 1: </span>Research
</h6>
<p class="portfolio-sub pb-1">Strategy</p>
<p>
It is a great start to identify who your target audience is and
for what reasons. At this stage, we want to identify their goals
and our goals to ensure we fulfil this when we start designing.
</p>
<p class="portfolio-sub pb-1">Scope & Structure</p>
<p>
Now that we know what are users want from us, we now need to
identify what features are workable to develop. Also, I like to
know how each information element fits together.
</p>
</div>
</div>
<hr />
<div class="col">
<div class="row">
<div class="col-sm-12 col-md-4 col-lg-3 vertical-align">
<img src="assets/images/design.png" class="img-size portfolio-img hvr-grow-shadow"
alt="vector graphic of planned wireframes" />
</div>
<div class="col">
<h6 class="step-title">
<span class="step">Step 2: </span>Design
</h6>
<p class="portfolio-sub pb-1">Skeleton</p>
<p>
The fun now begins! We start designing what we like the
website to look like. It is a great idea to hammer down the
layout, functionality and style to ensure we meet user's
goals.
</p>
<p class="portfolio-sub pb-1">Surface</p>
<p>
At the surface stage, we decide what do we want to convey?
What I mean is, what colours, font style are we going to use
to help convey your brand story.
</p>
</div>
</div>
</div>
<hr />
<div class="col">
<div class="row">
<div class="col-sm-12 col-md-4 col-lg-3">
<img src="assets/images/code.png" class="img-size portfolio-img hvr-grow-shadow vertical-align"
alt="vector graphic of desktop with finished website" />
</div>
<div class="col">
<h6 class="step-title">
<span class="step">Step 3: </span>Development
</h6>
<p class="portfolio-sub pb-1">Code</p>
<p>
This is the most exciting part of the project. It is where we
develop from an idea to something real!
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Portfolio card section -->
<section class="container mt-4 portfolio-card" id="projects">
<h4 class="pt-4 text-center">Projects</h4>
<hr class="block" />
<div class="row pt-4">
<div class="col-sm-6">
<!--Frist Project-->
<div class="card-deck">
<div class="card">
<a href="https://codesonia.github.io/CI_Resume_Project/" target="_blank" rel="noopener">
<img class="card-img-top hvr-grow-shadow" src="assets/images/cv_project_mockup.png"
alt="mock image of cv project" />
</a>
<div class="card-body">
<h5 class="card-title">CV Project</h5>
<p class="card-text">
A CV website is portraying Sonia's work history and skills.
Built using HTML, CSS & Bootstrap.
</p>
<p class="card-text">
<a href="https://codesonia.github.io/CI_Resume_Project/" target="_blank" rel="noopener">
<i class="fa fa-link" aria-hidden="true"></i>
<span class="sr-only">View live Resume Project</span>
</a>
<a href="https://github.com/CodeSonia/CI_Resume_Project" target="_blank" rel="noopener">
<i class="fa fa-github-alt" aria-hidden="true"></i>
<span class="sr-only">Visit Resume project GitHub repository</span>
</a>
</p>
</div>
</div>
</div>
</div>
<div class="col-sm-6">
<!--Second Project-->
<div class="card-deck">
<div class="card">
<a href="https://codesonia.github.io/whiskey_ci_project/" target="_blank" rel="noopener">
<img class="card-img-top hvr-grow-shadow" src="assets/images/whiskey_iphone_mockup.png"
alt="mock up of whiskey drop project on an iphone" />
</a>
<div class="card-body">
<h5 class="card-title">Whiskey Drop</h5>
<p class="card-text">
A fun, subscription service for Whiskey lovers with a sign-up
modal. Built using HTML, CSS & Bootstrap.
</p>
<p class="card-text">
<a href="https://codesonia.github.io/whiskey_ci_project/" target="_blank" rel="noopener">
<i class="fa fa-link" aria-hidden="true"></i>
<span class="sr-only">View live Whiskey Project</span>
</a>
<a href="https://github.com/CodeSonia/whiskey_ci_project/" target="_blank" rel="noopener">
<i class="fa fa-github-alt" aria-hidden="true"></i>
<span class="sr-only">Visit Whiskey project repository on GitHub</span>
</a>
</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<!--Third Project-->
<div class="card-deck">
<div class="card">
<a href="https://codesonia.github.io/love_running_ci/" target="_blank" rel="noopener">
<img class="card-img-top hvr-grow-shadow" src="assets/images/running_laptop.png"
alt="love running project on a laptop mockup, shows a screengrab of homepage" />
</a>
<div class="card-body">
<h5 class="card-title">Love Running</h5>
<p class="card-text">
An informative, friendly website for users who enjoy running
with a contact modal form and gallery imagery. Built using
HTML & CSS.
</p>
<p class="card-text">
<a href="https://codesonia.github.io/love_running_ci/" target="_blank" rel="noopener">
<i class="fa fa-link" aria-hidden="true"></i>
<span class="sr-only">View live Love Running Project</span>
</a>
<a href="https://github.com/CodeSonia/love_running_ci/" target="_blank" rel="noopener">
<i class="fa fa-github-alt" aria-hidden="true"></i>
<span class="sr-only">Visit Love Running GitHub repository</span>
</a>
</p>
</div>
</div>
</div>
</div>
<div class="col-sm-6">
<!--Fourth Project-->
<div class="card-deck">
<div class="card">
<a href="https://codesonia.github.io/candy_museum/" target="_blank" rel="noopener">
<img class="card-img-top hvr-grow-shadow" src="assets/images/museum_desktop.png"
alt="shows a desktop mockup of candy museum project, with a screengrab of the homepage" />
</a>
<div class="card-body">
<h5 class="card-title">Candy Museum</h5>
<p class="card-text">
A mobile responsive website using Bootstrap, HTML & CSS to
create a funky museum website for candy lovers.
</p>
<p class="card-text">
<a href="https://codesonia.github.io/candy_museum/" target="_blank" rel="noopener">
<i class="fa fa-link" aria-hidden="true"></i>
<span class="sr-only">View live Candy Museum Project</span>
</a>
<a href="https://github.com/CodeSonia/candy_museum/" target="_blank" rel="noopener">
<i class="fa fa-github-alt" aria-hidden="true"></i>
<span class="sr-only">Visit Candy Museum project on Github repository</span>
</a>
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Experience Section -->
<section class="container mt-4" id="experience">
<h4 class="h4 pt-4 text-center">Experience</h4>
<hr class="block" />
<div class="row">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="row">
<div class="col">
<!---Timeline credit to https://bootstrapious.com/p/timeline, adjusted some elements to suit my brand and style and replaced their code by incorporating Bootstrap cards-->
<!---Timeline starts-->
<ul class="timeline">
<li class="timeline-item">
<div class="timeline-arrow"></div>
<!--Card Starts-->
<div class="card text-white mb-3 shadow">
<!-- DWP -->
<div class="card-header">
<h6>
Department for Work & Pensions
</h6>
<p class="mt-2 mb-0 small">May 2021 - Present</p>
</div>
<div class="card-body timeline-post">
<h5 class="card-title">Work Coach (Executive Officer)</h5>
<ul>
<li class="card-text">
Work with customers, employers & colleagues through a combination of digital, telephone and
face-to-face contact daily.
</li>
<li class="card-text">
Providing support to Universal Credit, Jobseekers Allowance, Employment and Support Allowance,
and Income Support customers.
</li>
</ul>
<div class="dots"></div>
<ul class="more">
<li class="card-text">
Offering quality advice to customers about job search actions, supporting them to job search
effectively in a largely digital world.
</li>
<li class="card-text">
Building positive working relationships with customers that encourages, motivates and builds
trust.
</li>
<li class="card-text">
Developing in-depth knowledge of local employment and opportunities, recognising the roles
that our Partners and Employers have in helping our customers secure employment.
</li>
<li class="card-text">Making timely decisions, based on customer needs, and referring them to
appropriate help and support.
</li>
</ul>
<div class="read btn">read more</div>
</div>
</div>
<div class="card text-white mb-3 shadow">
<!-- Netcom Training/ Online Learning -->
<div class="card-header">
<h6>
Netcom Training / Netcom Online Learning
</h6>
<p class="mt-2 mb-0 small">Aug 2020 - May 2021</p>
</div>
<div class="card-body timeline-post">
<h5 class="card-title">Digital Marketing Executive</h5>
<ul>
<li class="card-text">
Generate demand for online courses via FB & Instagram and convert leads into business.
</li>
<li class="card-text">
Successfully launched & designed 2 billboard advertisements to raise local awareness as well as
supporting current campaigns.
</li>
</ul>
<div class="dots"></div>
<ul class="more">
<li class="card-text">
Implemented a range of successful social media campaigns including static and video content.
</li>
<li class="card-text">
Set up regular social media campaigns, as well as a/b testing to improve marketing efficiency.
</li>
<li class="card-text">
Delivered regular email marketing campaigns including course promotion, awareness, new courses
and offers.
</li>
<li class="card-text">
Manage monthly social media website audits to appraise the performance of the activity and made
strategic recommendations for improvement.
</li>
<li class="card-text">
Coached and delivered training to marketing assistants ensuring adherence to SEO, social media,
writing & brand guidelines.
</li>
<li class="card-text">
Designed promotional material using creative software in supporting the sales and customer
service team.
</li>
</ul>
<div class="read btn">read more</div>
</div>
</div>
<div class="card text-white mb-3 shadow">
<!-- Latham's Hardware -->
<div class="card-header">
<h6>
Latham's Hardware
</h6>
<p class="mt-2 mb-0 small">Aug 2019 - June 2020</p>
</div>
<div class="card-body timeline-post">
<h5 class="card-title">Sales & Marketing Assistant</h5>
<ul>
<li class="card-text">
Created a new logo for distribution brand Viking
Hinges using Affinity Designer.
</li>
<li class="card-text">
SEO optimisation for Latham's Hardware website.
Rewrote body content including page titles, meta
descriptions, H1's & about us page.
</li>
</ul>
<div class="dots"></div>
<ul class="more">
<li class="card-text">
Social Media content creation using Affinity Photo,
HootSuite and photography of product items.
</li>
<li class="card-text">
Advise customers on all point of contact, including
email & telephone.
</li>
<li class="card-text">
Answer & respond to customer queries on eBay & Amazon,
ensuring all queries are resolved in a timely manner
with the aim to exceed customer satisfaction.
</li>
<li class="card-text">Collate TrustPilot reviews.</li>
<li class="card-text">
Process orders, refunds, cancellations on CRM &
OrderWise.
</li>
</ul>
<div class="read btn">read more</div>
</div>
</div>
</li>
<!--School of Code-->
<li class="timeline-item">
<div class="timeline-arrow"></div>
<!--Card Starts-->
<div class="card text-white mb-3 shadow">
<!-- School of Code -->
<div class="card-header">
<h6>
School of Code
</h6>
<p class="mt-2 mb-0 small">
Dec 2018 - July 2019 (6-months contract)
</p>
</div>
<div class="card-body timeline-post">
<h5 class="card-title">Marketing Lead</h5>
<ul>
<li class="card-text">
Project managed the delivery of 2 key events:
(1)Launch Day (2) Demo Day. Secured the West Midlands
Mayor, Andy Street & tech industry Angel Investor
Sherry Coutu CBE to speak.
</li>
<li class="card-text">
Admin support for CEO and managed diary management.
</li>
</ul>
<div class="dots"></div>
<ul class="more">
<li class="card-text">
Social media content creation: a case study of a
4-month social media campaign:
<ul>
<li class="card-text">
Instagram audience grew by 148% due to organic
growth & telling a story by creating compelling
posts with rich content.
</li>
<li class="card-text">
Improved Instagram engagement rate from 13% to 69%
(exceeding industry benchmark with 6% being a very
high engagement rate by re-strategising).
</li>
<li class="card-text">
Twitter followers grew by 86% due to a steady flow
of content produced.
</li>
</ul>
</li>
<li class="card-text">
Secured press from Business Desk & Birmingham TV,
raising the profile locally & increasing SoC's
message.
</li>
<li class="card-text">
Created event promotional material using Canva &
PiktoChart as well as using MailChimp:
<ul>
<li class="card-text">
Successfully implemented engaging email content
exceeding industry average benchmark, with a 64%
open-rate (industry av. 15.9%) & a 22.2%
click-rate (industry av. 1.6%)
</li>
</ul>
</li>
</ul>
<div class="read btn">read more</div>
</div>
</div>
</li>
<!-- Below section is only appearing on large screens to reduce cognitive overload.-->
<li class="timeline-item d-none d-lg-block d-xl-block">
<div class="timeline-arrow"></div>
<!--Card Starts-->
<div class="card text-white mb-3 shadow">
<!-- WMGC -->
<div class="card-header">
<h6>
West Midland's Growth Company (WMGC)
</h6>
<p class="mt-2 mb-0 small">Jun 2017 - Sept 2018</p>
</div>
<div class="card-body timeline-post">
<h5 class="card-title">Business Development Assistant</h5>
<ul>
<li class="card-text">
Support account managed senior-level accounts
alongside Director & Manager.
</li>
<li class="card-text">
Actively involved in marketing campaigns & offering
pro-active support, data input into the CRM system &
updating mailing lists.
</li>
</ul>
<div class="dots"></div>
<ul class="more">
<li class="card-text">
Revitalised Partner engagement report from CRM, from a
non-useful report to a presentable format that shown
tangible benefits delivered.
</li>
<li class="card-text">