-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
690 lines (629 loc) · 28.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Innocent Suta</title>
<!-- CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="fontawesome/css/all.css" />
<link rel="stylesheet" href="Icons/font/flaticon.css" />
<link rel="stylesheet" href="./aos/aos.css">
<link rel="stylesheet" href="css/style.css" />
</head>
<body data-spy="scroll" data-offset="100" data-target=".navbar">
<!-- NAVIGATION -->
<header>
<nav class="navbar navbar-expand-lg navbar-light bg-light" id="Top_navbar">
<div class="container">
<a class="navbar-brand" href="#home"><span>I</span>nnocent</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbars"
aria-controls="navbars" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbars">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="#home">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a href="#about" class="nav-link">About</a>
</li>
<li class="nav-item">
<a href="#resume" class="nav-link">Resume</a>
</li>
<li class="nav-item">
<a href="#service" class="nav-link">Services</a>
</li>
<li class="nav-item">
<a href="#portfolio" class="nav-link">portfolio</a>
</li>
<!-- <li class="nav-item">
<a href="#blog" class="nav-link">Blog</a>
</li> -->
<li class="nav-item">
<a href="#contact" class="nav-link">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!-- Home -->
<section class="home-section py-5" id="home">
<div class="container">
<div class="row slider-text">
<div class="col-lg-12 col-md-6">
<div class="home-content align-items-center text-center">
<span class="nameheading">Hello, My my name is </span>
<h1>Innocent Suta</h1>
<h2>
I'm a
<span class="txt-rotate" data-period="2000"
data-rotate='[ "Web Designer.", "Web Developer.", "Software Engineer.", "Data Scientist."]'></span>
</h2>
</div>
</div>
</div>
</div>
<div class="scroll-down-arrow bounce text-center">
<a class="fa fa-arrow-down fa-2x" href="#"></a>
</div>
</section>
<!-- ABOUT -->
<section class="about-section py-5" id="about">
<div class="container">
<div class="row justify-content-center py-3 mt-5">
<div class="col-md-12 text-center section-title">
<h2>About Me</h2>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="box-shadow">
<div class="row">
<div class="col-sm-7">
<div class="about-content ">
<h6>
Hello, I'm Innocent Suta, a Bsc (Hons) in Information Technology
(Data Science) student at PIHE
</h6>
<p>
I'm a passinate developer who loves developing and creating
websites. I love learning new and better ways to
create websites using various Technologies while improving my
coding skills everyday. I'm always looking for opportunities to
work with other people and share my knowledge.
</p>
<p>
When am not busy with coding, I'm probably playing fifa or soccer with my friends, reading a novel, playing pool, playing chess or watching movies and
series or travelling.
</p>
<p>
Feel free to contact me for collaboration or for any
opportunities
</p>
<!-- <div class="about-btn text-uppercase">
<a href="#" class="intouch-btn btn px-4 py-3">Get In Touch</a>
<a href="#" class="rsm-btn btn px-4 py-3">Get Resume</a>
</div> -->
<div class="contact-info mb-3 text-center justify-content-center">
<p class="mb-0 c-title">Phone/WhatsApp:</p>
<p class="mb-4"><a href="#">+255 714 319 486 </a></p>
<p class="mb-0 c-title">Email Address:</p>
<p class="mb-4"><a href="#">sutainnocent@gmail.com</a></p>
</div>
</div>
</div>
<div class="col-sm-5">
<div class="about-img d-flex justify-content-center align-items-center p-5">
<img class="img-fluid rounded-circle" src="./images/innocent.jpg" alt="" />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- RESUME -->
<section id="resume">
<div class="container">
<div class="row justify-content-center py-3 mt-5">
<div class="col-md-12 text-center section-title">
<h2 class="mb-4">Resume</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<!-- start of Education section -->
<div id="education" class="resume edu">
<h2 class="heading">Education</h2>
<div class="education-content box-shadow">
<div class="rsm_wrap">
<div class="resume-info">
<h2 class="info-title">Bachelor of Science Honours in Information Technology (Data Science)</h2>
<span class="duration">February 2020 - November 2020</span>
<h1>Pearson Institute of Higher Education - Midrand</h1>
<p>Field of Study: Data Science</p>
<p>Other Modules:Big Data Analytic Techniques, Business Objects Service Oriented Architecture,
Communication in Data Science, Data Mining and Data Administration & Research Project.</p>
</div>
</div>
<div class="rsm_wrap">
<div class="resume-info">
<h2 class="info-title">Bachelor of Science in Computer Science</h2>
<span class="duration">February 2017- November 2019</span>
<h1>Pearson Institute of Higher Education - Midrand</h1>
<p>Field of Study: Computer Science , Information system and Software Development</p>
</div>
</div>
</div>
</div> <!-- End of Education section -->
<!-- start of Experience section -->
<div id="experience" class="resume exp">
<h2 class="heading">Experience</h2>
<div class="experience-content box-shadow">
<div class="rsm_wrap">
<div class="resume-info">
<h2 class="info-title">IT and E-Commerce Support Specialist Intern <span>@DHL Express</span></h2>
<span class="duration">February 2017- November 2019</span>
<p>Major Functions: IT support Specialist and E-commerce administrator, my daily activities were
install DHL Applications, taking back-ups, insuring all IT equipment’s are in good condition and
arranged properly, troubleshoot computer problems and to provide assistance to users as well as
training and assisting customers to use DHL online tools to do their bookings. </p>
</div>
</div>
<div class="rsm_wrap">
<div class="resume-info">
<h2 class="info-title">Ambassador <span>@Young Global Pioneers</span></h2>
<span class="duration">Since September 2016</span>
<p>I represent Young Global Pioneers in Tanzania. I also act as a reference in regards to future Learning Journey
participants to inform them about Young Global Pioneers and the Learning Journeys. In addition, I assist Young Global
Pioneers with important tasks such as giving a presentation at local universities, placing posters at selected
faculties, etc.</p>
</div>
</div>
</div>
</div>
<!-- End of Experience section -->
<!-- start of skills section -->
<div id="skills" class="resume skills">
<h2 class="heading">Skills & Tools</h2>
<div class="row skills-content box-shadow" data-aos="fade-up">
<div class="col-md-6">
<div class="progress_wrap">
<h2 class="skill text-uppercase">HTML, CSS & JavaScript</h2>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-danger" style="width: 80%">
<span class="value">80%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="progress_wrap">
<h2 class="skill text-uppercase">bootstrap 4</h2>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-danger" style="width: 85%">
<span class="value">85%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="progress_wrap">
<h2 class="skill text-uppercase">Angular Framework</h2>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-danger" style="width: 60%">
<span class="value">60%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="progress_wrap">
<h2 class="skill text-uppercase">Java</h2>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-danger" style="width: 75%">
<span class="value">75%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="progress_wrap">
<h2 class="skill text-uppercase">Python</h2>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-danger" style="width: 75%">
<span class="value">75%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="progress_wrap">
<h2 class="skill text-uppercase">R language</h2>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-danger" style="width: 70%">
<span class="value">70%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="progress_wrap">
<h2 class="skill text-uppercase">PYTHON (DJANGO)</h2>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-danger" style="width: 80%">
<span class="value">80%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="progress_wrap">
<h2 class="skill text-uppercase">PHP</h2>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-danger" style="width: 60%">
<span class="value">60%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="progress_wrap">
<h2 class="skill text-uppercase">MYSQL</h2>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-danger" style="width: 80%">
<span class="value">80%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="progress_wrap">
<h2 class="skill text-uppercase">git and Github</h2>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-danger" style="width: 80%">
<span class="value">80%</span>
</div>
</div>
</div>
</div>
</div>
</div> <!-- End of skills section -->
<!-- <div id="facts" class="resume facts">
<h2 class="heading">Facts</h2>
<div class="facts_wrap">
</div>
</div> -->
</div>
</div>
</div>
</section>
<!-- SERVICES -->
<section id="service">
<div class="container px-md-5">
<div class="row justify-content-center py-3 mt-5">
<div class="col-md-12 text-center section-title">
<h2 class="mb-4">Services</h2>
<p>Services that you will get from me!</p>
</div>
</div>
<div class="row">
<div class="col-md-4 text-center d-flex">
<div class="service-content shadow">
<span class="icon ">
<i class="flaticon-data"></i>
</span>
<div class="service-desc">
<h3 class="mb-5">Web Design</h3>
<p>
Using my programing skills and knowledge i can to design, build and improve websites.
I can build websites that are easy to understand, navigate and use, and adhere to
design standards and specifications.
</p>
</div>
</div>
</div>
<div class="col-md-4 text-center d-flex">
<div class="service-content shadow">
<span class="icon ">
<i class="flaticon-cloud"></i>
</span>
<div class="service-desc">
<h3 class="mb-5">Web & Mobile Development</h3>
<p>
As a Web developer i can design and build websites that requires technical features. I can
also develop mobile applications using latest available Technologies to suit client's need.
</p>
</div>
</div>
</div>
<div class="col-md-4 text-center d-flex">
<div class="service-content shadow">
<span class="icon">
<i class="flaticon-analysis"></i>
</span>
<div class="service-desc">
<h3 class="mb-5">Data Scientist</h3>
<p>
I can utililize my programming, analytical and statistical skills to collect, analyze, and
interpret data sets to find usefull insights from data. The insights obtained can be used to develop
data-driven solutions to business challenges.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- PROJECTS -->
<section id="portfolio" class="portfolio">
<div class="container">
<div class="row justify-content-center py-3 mt-5">
<div class="col-md-12 text-center section-title">
<h2 class="mb-4">portfolio</h2>
<p>The latest projects that i have worked on are listed below</p>
</div>
</div>
<!-- start project item -->
<!-- 1 -->
<div class="row d-flex justify-content-center">
<div class="col-md-6">
<div class="card project_content bg-white rounded shadow-sm">
<div class="card-img">
<img src="images/Projects/Innocent-Suta.png" class="img-fluid card-img-top" alt="project image" />
</div>
<div class="card-body">
<div class="project_tag_box">
<div class="project_tag">
<h6 class="tag text-uppercase text-dark">Web design</h6>
</div>
</div>
<h4 class="project_title card-title text-dark font-weight-bold">Personal Website - V1</h4>
<p class="project_description card-text text-justify">
My first portfolio websites designed and built in 2020. This
website gives brief introduction about me, my skills and some
of the projects that i have worked on so far. It's a single
page web site and it is hosted on Github pages. I designed
this web site in order to practice my Html, CSS, JavaScript
and bootstrap 4 skills.
</p>
<div class="technology_used" data-aos="zoom-in">
<span>HTML</span>
<span>CSS</span>
<!-- <span>PHP</span> -->
<span>JavaScript</span>
<span>Bootstrap 4</span>
</div>
<div class="links mt-4 ml-0" data-aos="zoom-in">
<a href="https://innocentsuta.github.io/Personal_website/" target="_blank"><i
class="fas fa-external-link-alt"></i></a>
<a href="https://github.com/InnocentSuta/Personal_website" target="_blank"><i
class="fab fa-github"></i></a>
</div>
</div>
</div>
</div><!-- End -->
<!-- 2 -->
<div class="col-md-6">
<div class="card project_content bg-white rounded shadow-sm">
<div class="card-img">
<img src="images/Projects/eccomerce.PNG" class="img-fluid card-img-top" alt="project image" />
</div>
<div class="card-body">
<div class="project_tag_box">
<div class="project_tag">
<h6 class="tag text-uppercase text-dark">Web design</h6>
</div>
</div>
<h4 class="project_title card-title text-dark font-weight-bold">SuttaStore </h4>
<p class="project_description card-text text-justify">
This is simple e-commerce built using the following technologies, HTML, CSS, JS, Bootstrap 3, PHP, MySQL and PHPMyAdmin.
The website has an admin part as well, where the user can upload pictures and details of the products that they want to
add to the website for the customers to see.
</p>
<div class="technology_used" data-aos="zoom-in">
<span>HTML</span>
<span>CSS</span>
<span>Php</span>
<span>JavaScript</span>
<span>Bootstrap 4</span>
</div>
<div class="links mt-4 ml-0" data-aos="zoom-in">
<!-- <a href="https://innocentsuta.github.io/Personal_website/" target="_blank"><i
class="fas fa-external-link-alt"></i></a> -->
<a href="https://github.com/InnocentSuta/MHDstore" target="_blank"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</div><!-- End -->
<!-- 3 -->
<div class="col-md-6">
<div class="card project_content bg-white rounded shadow-sm">
<div class="card-img">
<img src="images/Projects/Account-update.PNG" class="img-fluid card-img-top" alt="project image" />
</div>
<div class="card-body">
<div class="project_tag_box">
<div class="project_tag">
<h6 class="tag text-uppercase text-dark">Restful Api</h6>
</div>
</div>
<h4 class="project_title card-title text-dark font-weight-bold">Django Restful webservice</h4>
<p class="project_description card-text text-justify">
This is a simple web service that I did with my friend using Python (Django). The web service shows all the CRUD (
create, read, update and delete) functions as well as login and registration.
</p>
<div class="technology_used" data-aos="zoom-in">
<span>HTML</span>
<span>CSS</span>
<span>Python(Django)</span>
<span>JavaScript</span>
<span>Bootstrap 4</span>
<span>Postman (testing)</span>
</div>
<div class="links mt-4 ml-0" data-aos="zoom-in">
<!-- <a href="https://innocentsuta.github.io/Personal_website/" target="_blank"><i
class="fas fa-external-link-alt"></i></a> -->
<a href="https://github.com/InnocentSuta/Django-RESTful-Web-Services" target="_blank"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</div><!-- End -->
<!-- 4 -->
<div class="col-md-6">
<div class="card project_content bg-white rounded shadow-sm">
<div class="card-img">
<span>Customer</span>
<img src="images/Projects/cc.PNG" class="img-fluid card-img-top" alt="project image" />
<span>Admin</span>
<img src="images/Projects/cc2.PNG" class="img-fluid card-img-top" alt="project image" />
</div>
<div class="card-body">
<div class="project_tag_box">
<div class="project_tag">
<h6 class="tag text-uppercase text-dark">web</h6>
</div>
</div>
<h4 class="project_title card-title text-dark font-weight-bold">CoffeeCousins</h4>
<p class="project_description card-text text-justify">
This was a final year project in which I collaborated with my group members. We designed a website and stock monitoring
system for a client as a final year project and we become second in the final year project presentations. In this
project, we used HTML, CSS, Bootstrap 4, Ajax, jquery, javascript and PHP.
The stock monitoring web app allowed our client to control all the stocks in various kiosks and also to track which
method of payment is used the most in a specific kiosk.
</p>
<div class="technology_used" data-aos="zoom-in">
<span>HTML</span>
<span>CSS</span>
<span>jquery & Ajax</span>
<span>PHP</span>
<span>JavaScript</span>
<span>Bootstrap 4</span>
</div>
<div class="links mt-4 ml-0" data-aos="zoom-in">
<!-- <a href="https://innocentsuta.github.io/Personal_website/" target="_blank"><i
class="fas fa-external-link-alt"></i></a> -->
<a href="https://github.com/InnocentSuta/Django-RESTful-Web-Services" target="_blank"><i
class="fab fa-github"></i></a>
</div>
</div>
</div>
</div><!-- End -->
</div>
</div>
</section>
<!-- BLOG -->
<!-- <section id="blog"></section> -->
<!-- CONTACT -->
<section id="contact" class="contact py-5">
<div class="container" data-aos="fade-up">
<div class="box-shadow ">
<div class="row justify-content-center">
<div class="col-md-12 text-center section-title">
<h2 class="mb-4">Get in Touch</h2>
<p>
Please feel free to contact me either for project collaboration,
job opportunities, freelancing work or to just say hello
</p>
</div>
</div>
<div class="row justify-content-center text-center">
<!-- <div class="col-md-7 mb-5">
<form action="#" method="POST">
<div class="form-content">
<div class="form-group row">
<div class="col-md-6">
<label class="text-black" for="Fname">First Name <span class="text-danger">*</span></label>
<input type="text" class="form-control" id="Fname" name="Fname" required>
</div>
<div class="col-md-6">
<label class="text-black" for="Lname">Last Name <span class="text-danger">*</span></label>
<input type="text" class="form-control" id="Lname" name="Lname" required>
</div>
</div>
<div class="form-group row">
<div class="col-md-12">
<label class="text-black" for="Email">Email<span class="text-danger">*</span></label>
<input type="email" class="form-control" name="Email" id="Email" required>
</div>
</div>
<div class="form-group row">
<div class="col-md-12">
<label class="text-black" for="Subject">Subject<span class="text-danger">*</span></label>
<input type="text" class="form-control" name="Subject" id="Subject">
</div>
</div>
<div class="form-group row">
<div class="col-md-12">
<label for="Message" class="text-black">Message </label>
<textarea name="Message" id="Message" cols="30" rows="7" class="form-control"></textarea>
</div>
</div>
<div class="form-group row">
<div class="col-lg-12">
<input type="submit" class="send btn btn-lg btn-outline-success text-uppercase" value="Send">
</div>
</div>
</div>
</form>
</div> -->
<div class="col-md-5 py-2">
<div class="contact-info mb-3">
<p class="mb-0 c-title">Address:</p>
<p class="mb-4"> <a href="#"> Kinyerezi, Dar es Salaam, Tanzania</a></p>
<p class="mb-0 c-title">Phone/WhatsApp:</p>
<p class="mb-4"><a href="#">+255 714 319 486</a></p>
<p class="mb-0 c-title">Email Address:</p>
<p class="mb-4"><a href="#">sutainnocent@gmail.com</a></p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- FOOTER -->
<footer id="footer">
<div class="container">
<div class="row ">
<div class="col-xs-12 col-sm-12 col-md-12">
<div class="social-links justify-content-center text-center">
<a href="https://www.linkedin.com/in/innocent-suta-43588612b/" target="_blank"><i class="fab fa-linkedin-in"></i></a>
<a href="https://github.com/InnocentSuta" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://www.instagram.com/innocent_sutta/" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="https://www.facebook.com/isutta" target="_blank"><i class="fab fa-facebook"></i></a>
<a href="https://twitter.com/innocent_sutta" target="_blank"><i class="fab fa-twitter"></i></a>
</div>
</div>
<hr />
</div>
</div>
<!-- Copyrights -->
<div class="py-2">
<div class="container text-center">
<p class="mb-0 py-1">
Copyright ©2020 All rights reserved | Designed & Built by Innocent
Suta
</p>
</div>
</div>
</footer>
<!-- Scroll Up or Back to the top-->
<!-- js scripts-->
<script src="./JS/jquery-3.5.1.min.js"></script>
<script src="./JS/bootstrap.min.js"></script>
<script src="./JS/all.min.js"></script>
<script src="./JS/popper.min.js"></script>
<script src="./aos/aos.js"></script>
<script src="./JS/main.js"></script>
</body>
<!-- *********************************************
HEY THERE!
Since You have reached this far
Be sure to drop me a text! I'd love to chat
- Innocent
********************************************** -->
</html>