-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
765 lines (761 loc) · 30.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./styles/hero-section.css" />
<link rel="stylesheet" href="./styles/youtube-video-section.css" />
<link rel="stylesheet" href="./styles/milestones-section.css" />
<link rel="stylesheet" href="./styles/hire-talent-section.css" />
<link rel="stylesheet" href="./styles/testimonials.css" />
<link rel="stylesheet" href="./styles/programs-section.css" />
<link rel="stylesheet" href="./styles/accordion.css" />
<link rel="stylesheet" href="./styles/contact.css" />
<link rel="stylesheet" href="./styles/partners.css" />
<link rel="stylesheet" href="./styles/footer.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<link
rel="icon"
type="image/x-icon"
href="./assets/images/logo square.svg"
/>
<title>SE Factory | Want to become a software engineer?</title>
</head>
<body>
<section class="hero">
<div class="navigation">
<div class="visible-navigation-bar">
<a href="/" class=""
><img src="./assets/images/sef-logo.svg" class="logo" /></a
><a href="#home" class="hamburger"
><img src="./assets/images/hamburger.svg"
/></a>
</div>
<div id="modal" class="modal">
<div class="visible-navigation-bar">
<a href="/" class=""
><img src="./assets/images/sef-logo.svg" class="logo" /></a
><a href="#home" class="hamburger"
><img src="./assets/images/close.svg"
/></a>
</div>
<div class="modal-content-container">
<div class="modal-links">
<a id="active" href="/#home">Home</a
><a href="/#hello-world">Hello world!</a
><a href="/#milestones">Milestones</a
><a href="/#programs">Programs</a
><a href="/#hire-talent">Hire talent</a
><a href="/#testimonials">Testimonials</a><a href="/#faqs">FAQs</a
><a href="/#contact">Contact us</a
><a href="/#partners">Partners</a
><a href="/#newsletter">Newsletter</a>
</div>
<div class="modal-signup">
<div class="modal-form">
<div class="login-box-container">
<div>
<span class="arrow">></span>
<span class="signup-title">Account</span>
</div>
<p>
/* Login with existing or create a new account in order to
apply to SEF programs */
</p>
<button class="button-modal">log in</button
><button class="button-modal-white">sign up</button>
</div>
</div>
<div class="hr-box">
<img src="./assets/images/hr.svg" alt="" />
<div class="hr-content">
<div class="hr-content-title">
Global Companies,<br />Meet Lebanese Talent
</div>
<div class="hr-content-text">
All You Need to Launch a Local Team<br />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="hero-left">
<div id="overlay" class="hero-left hero-left-overlay">
<div id="hero-content" class="hero-content">
<h1 class="content-title">
<span class="subtitle">Want to become a</span>
<br />
<span id="animated-text">animated text</span
><span id="cursor">_</span>
</h1>
<p class="content-descreption">
Jumpstart your journey in tech with our courses in Computer
Science, Full-Stack Web development, Data Engineering and UI/UX
Design. Get hands-on experience and gain essential skills for a
successful tech career.
</p>
<a class="content-button">#Get_trained</a>
</div>
</div>
</div>
<div class="hero-right">
<div class="hero-content-right">
<h1 class="content-title-right">
<span class="subtitle-right">want to hire</span>
<br />
<span id="animated-text">JOB-READY TECH TALENT?</span>
</h1>
<p class="content-descreption-right">
Look no further than our comprehensive talent matching and placement
services! Our expert team will connect you with highly trained and
skilled developers who are ready to hit the ground running and drive
your success.
</p>
<a class="content-button-right">#hire_talent</a>
</div>
</div>
</section>
<section class="hello-world-section">
<div class="default-container">
<div class="default-section-title">
<div class="default-arrow">></div>
<div class="default-title">Hello world!</div>
<div class="default-circles">
<div class="default-circle-black"></div>
<div class="default-circle-grey"></div>
<div class="default-circle-green"></div>
</div>
</div>
<div class="youtube-video">
<iframe
src="https://www.youtube.com/embed/vG7SYQjODTs?rel=0&controls=1&autoplay=0&mute=0&start=0"
frameborder="0"
style="
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
pointer-events: auto;
"
allow="autoplay; encrypted-media"
allowfullscreen=""
title="Graduates | FSW 21-22"
></iframe>
</div>
</div>
</section>
<section class="milestones">
<div class="default-container">
<div class="default-section-title">
<div class="default-arrow">></div>
<div class="default-title">Milestones</div>
<div class="default-circles">
<div class="default-circle-black"></div>
<div class="default-circle-grey"></div>
<div class="default-circle-green"></div>
</div>
</div>
<div class="milestone-boxes">
<div class="boxes-left milestone-container big">
<div class="milestone-title">90%</div>
<div class="milestone-percentage left">employment success rate</div>
<p>
- Supported the employment of <strong>250+</strong> youth<br />-
<strong>50%</strong> working remotely from Lebanon<br />- Average
salary today
<strong>$1,300</strong>
</p>
</div>
<div class="boxes-right">
<div class="boxes-row">
<div class="col-left milestone-container small">
<div class="milestone-title small">1,000+</div>
<div class="milestone-percentage small">
youth trained since 2016
</div>
</div>
<div class="col-left milestone-container small">
<div class="milestone-title small">10+</div>
<div class="milestone-percentage small">hiring countries</div>
</div>
</div>
<div class="boxes-row">
<div class="col-left milestone-container small">
<div class="milestone-title small">300+</div>
<div class="milestone-percentage small">
graduated Full-Stack<br />web developers
</div>
</div>
<div class="col-left milestone-container small">
<div class="milestone-title small">220+</div>
<div class="milestone-percentage small">
global recruitment<br />partner companies
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="programs">
<div class="default-container">
<div class="default-section-title">
<div class="default-arrow-black">></div>
<div class="default-title-black">
<div class="section-title-title sub-section">Programs</div>
</div>
<div class="default-circles">
<div class="default-circle-black"></div>
<div class="default-circle-grey"></div>
<div class="default-circle-green"></div>
</div>
</div>
<div class="program-tabs-container">
<div class="tab-buttons">
<a id="fcs" class="tab"><div>FCS</div></a>
<a id="fsw" class="tab green tab-active"><div>FSW</div></a>
<a id="fsd" class="tab"><div>FSD</div></a>
<a id="uiux" class="tab"><div>UIX</div></a>
</div>
<div class="tabs-content">
<div
id="fcs-tab"
class="tab-content container-fcs"
style="display: none"
>
<div class="inner-tab-container">
<div class="inner-tab-left">
<div class="inner-tab-title">
<span class="yellow">> FCS:</span> Foundations of
Computer Science
</div>
<div class="inner-tab-text">
<p>
// This 9-week course covers fundamental topics in
computer science, including data structures, algorithms,
and foundational concepts. It is suitable for coding
enthusiasts, former computer science students, and
beginners who wish to learn Python programming,
object-oriented programming, file systems, and more. The
course includes online video materials, assignments, and
instructor-led sessions.
</p>
</div>
<div class="inner-tab-buttons">
<div class="date-section">
next course date |
<span class="yellow bold-button-text">
To be confirmed</span
>
</div>
<a class="learn-more">learn more ></a>
</div>
</div>
</div>
<img
alt="image"
src="./assets/images/fcs.png"
loading="lazy"
class="tab-image"
/>
</div>
<div id="fsw-tab" class="tab-content">
<div class="inner-tab-container">
<div class="inner-tab-left">
<div class="inner-tab-title">
<span class="green">> FSW:</span> Full-Stack Web
Development
</div>
<div class="inner-tab-text">
<p>
// Our 14-week bootcamp is designed to equip aspiring
developers with the technical and interpersonal skills
needed to become professional software engineers.
Participants will learn essential concepts such as Version
Control, Object-Oriented Programming, Database Management
Systems, MVC Design Patterns, Dependency Management,
modern Web Frameworks, and AWS. The program also includes
a soft-skills curriculum covering Communication &
Interpersonal Skills, Professional Writing, Technical
Presentations, Negotiation, and Interviewing, which will
be taught through lectures, weekly projects, tech talks,
and a final project to showcase their learning.
</p>
</div>
<div class="inner-tab-buttons">
<div class="date-section">
next bootcamp date |
<span class="green bold-button-text">
To be confirmed</span
>
</div>
<a class="learn-more">learn more ></a>
</div>
</div>
</div>
<img
alt="image"
src="./assets/images/fsw.png"
loading="lazy"
class="tab-image"
/>
</div>
<div id="fsd-tab" class="tab-content" style="display: none">
<div class="inner-tab-container">
<div class="inner-tab-left">
<div class="inner-tab-title">
<span class="purple">> FSD:</span> Full-Stack Data
</div>
<div class="inner-tab-text">
<p>
// SE Factory's 12-week Full-Stack Data course offers
robust training in data analysis and engineering.
Participants learn to handle large data sets with Python
and use libraries like Pandas, NumPy, and Matplotlib for
data manipulation and visualization. The course also
delves into cloud orchestration, distributed computing,
relational databases, and SQL basics. Hands-on projects
provide real-world data analysis experience. Upon
completion, students gain proficiency in Python for
analytics, understand data warehousing, and can
effectively visualize and present data insights.
</p>
</div>
<div class="inner-tab-buttons">
<div class="date-section">
next bootcamp date |
<span class="purple bold-button-text">
To be confirmed</span
>
</div>
<a class="learn-more">learn more ></a>
</div>
</div>
</div>
<img
alt="image"
src="./assets/images/fsd.png"
loading="lazy"
class="tab-image"
/>
</div>
<div id="uiux-tab" class="tab-content" style="display: none">
<div class="inner-tab-container">
<div class="inner-tab-left">
<div class="inner-tab-title">
<span class="pink">> UIX:</span> UI/UX Design Bootcamp
</div>
<div class="inner-tab-text">
<p>
// SE Factory's 6-week UI/UX course offers immersive
learning in UI/UX design. It encompasses the essentials of
UI/UX, from mastering Figma, color psychology, typography
to UX heuristics, prototyping and WCAG guidelines.
Learners work on projects, transforming wireframes into
mockups, and creating responsive interfaces. The course
culminates in a final project, enabling students to
conduct a thorough UX audit, revamp a website, and create
a well-documented case study. Graduates leave equipped
with a polished portfolio and market-ready skills in UI/UX
design.
</p>
</div>
<div class="inner-tab-buttons">
<div class="date-section">
next bootcamp date |
<span class="pink bold-button-text">
To be confirmed</span
>
</div>
<a class="learn-more">learn more ></a>
</div>
</div>
</div>
<img
alt="image"
src="./assets/images/uiux.png"
loading="lazy"
class="tab-image"
/>
</div>
</div>
</div>
</div>
</section>
<section class="hire-talent">
<div class="default-container">
<div class="default-section-title">
<div class="default-arrow">></div>
<div class="default-title hire-title">Hire talent</div>
<div class="default-circles">
<div class="default-circle-black"></div>
<div class="default-circle-grey"></div>
<div class="default-circle-green"></div>
</div>
</div>
<div class="hire-inner-container">
<div class="become-partner">
<div class="partner-title">
<span>Become a Recruitment Partner</span>
</div>
<div class="partner-subtitle">
<span class="green">220+</span> companies from over
<span class="green">10</span> countries have joined our network
since <span class="green">2016</span>
</div>
<div class="partner-list">
<ol>
<li>
Exclusive, direct, and streamlined access to our graduating
cycles
</li>
<li>
Candidate insights from instructors and personalized
recommendations
</li>
<li>Interviews at will</li>
<li>
Tech talks participation and engagement with students
opportunities
</li>
</ol>
<p>
Are you on the hunt for exceptional rising junior developers?
Look no further than SE Factory!
</p>
</div>
<a class="partner-button">Contact us ></a>
</div>
<div class="become-partner-bot">
<div>
<span>Want to launch a local team?</span>
</div>
<div>
<span>check out</span>
</div>
<a
><img
src="https://assets-global.website-files.com/63e3828f575098222357ad70/63e4e564253e4eaed97f68ed_Property%201%3Dlogo_text.svg"
/></a>
</div>
</div>
</div>
</section>
<section class="testimonials">
<div class="default-container">
<div class="default-section-title">
<div class="default-arrow">></div>
<div class="default-title">Testimonials</div>
<div class="default-circles">
<div class="default-circle-black"></div>
<div class="default-circle-grey"></div>
<div class="default-circle-green"></div>
</div>
</div>
<div class="slides">
<div class="hire-inner-container slide">
<div class="testimonials-inner">
<div class="inner-left">
<img class="mark" src="./assets/images/mark.svg" alt="" />
<p>
Growing up, I saw that every girl that had taken interest in
anything technical or scientific had been undermined and
underestimated in her field. That isn't fair, breaking this
stereotype is a must. The first step I took towards doing this
was to join SEF, a bootcamp that supported diversity and
inclusion.
</p>
<div class="testimonials-small">
<img class="thumb" src="./assets/images/test1.png" />
<div>
<div><span>Zeina</span> O.</div>
<div>
SEF alumna working at
<span class="green">Poyesis</span>
</div>
</div>
</div>
</div>
<div class="inner-right">
<img src="./assets/images/test1.png" />
</div>
</div>
</div>
<div class="hire-inner-container slide">
<div class="testimonials-inner">
<div class="inner-left">
<img class="mark" src="./assets/images/mark.svg" alt="" />
<p>
Hiring skilled engineers has never been easy. With SE Factory,
this became super easy and effective. Candidates are
well-trained and we get to see their strengths before hiring,
which is perfect for a growing startup.
</p>
<div class="testimonials-small">
<img class="thumb" src="./assets/images/test2.jpeg" />
<div>
<div><span>Rayan </span> Najdi</div>
<div>
> Lebanon,
<span class="green">Geek Express</span>
</div>
</div>
</div>
</div>
<div class="inner-right">
<img src="./assets/images/test2.jpeg" />
</div>
</div>
</div>
<div class="hire-inner-container slide">
<div class="testimonials-inner">
<div class="inner-left">
<img class="mark" src="./assets/images/mark.svg" alt="" />
<p>
Our business is expanding thanks to talented and dedicated
team members that we hired through SE Factory. Looking forward
to hiring more developers from them as we grow.
</p>
<div class="testimonials-small">
<img class="thumb" src="./assets/images/test3.jpeg" />
<div>
<div><span>Rabih </span> Chaar</div>
<div>
> UAE,
<span class="green">Nadeera</span>
</div>
</div>
</div>
</div>
<div class="inner-right">
<img src="./assets/images/test3.jpeg" />
</div>
</div>
</div>
</div>
</div>
</section>
<section class="faqs">
<div class="default-container">
<div class="default-section-title">
<div class="default-arrow">></div>
<div class="default-title hire-title">FAQs</div>
<div class="default-circles">
<div class="default-circle-black"></div>
<div class="default-circle-grey"></div>
<div class="default-circle-green"></div>
</div>
</div>
<div class="hire-inner-container small-gap">
<div class="accordion-click-area">
<div class="title-accordion accordion">
<div class="green">></div>
<div>
What is the Difference Between the FSW Bootcamp & the FCS
Program?
</div>
</div>
<div class="panel">
<p>
FCS covers the foundational concepts of programming. It’s a
starting point for those new to programming or a refresher for
those who studied computer science before. Knowledge of the
concepts provided in FCS is required for FSW. It can also be
taken ‘informally’ for free if you do not plan to continue to
FSW Bootcamp or you are unable to commit to the online courses
via Udemy: Free Computer Science Tutorial - Foundations of
Computer Science: Theory and Practice.
</p>
</div>
</div>
<div class="accordion-click-area">
<div class="title-accordion accordion">
<div class="green">></div>
<div>
What is the Difference Between the FSW Bootcamp & the FCS
Program?
</div>
</div>
<div class="panel">
<p>
FCS covers the foundational concepts of programming. It’s a
starting point for those new to programming or a refresher for
those who studied computer science before. Knowledge of the
concepts provided in FCS is required for FSW. It can also be
taken ‘informally’ for free if you do not plan to continue to
FSW Bootcamp or you are unable to commit to the online courses
via Udemy: Free Computer Science Tutorial - Foundations of
Computer Science: Theory and Practice.
</p>
</div>
</div>
<div class="accordion-click-area">
<div class="title-accordion accordion">
<div class="green">></div>
<div>Where do I apply?</div>
</div>
<div class="panel">
<p>
Go to the Get Trained section of this website and select the
appropriate program for you.
</p>
</div>
</div>
</div>
</div>
</section>
<section class="contact">
<div class="default-container">
<div class="default-section-title">
<div class="default-arrow-black">></div>
<div class="default-title-black">
<div class="section-title-title sub-section">Contact us</div>
</div>
<div class="default-circles">
<div class="default-circle-black"></div>
<div class="default-circle-grey"></div>
<div class="default-circle-green"></div>
</div>
</div>
<!-- <div class="contact-container">
<div class="map-left">
<div class="map-title">> Get directions</div>
<iframe
width="240"
height="240"
id="gmap_canvas"
src="https://maps.google.com/maps?q=se%20factory&t=&z=17&ie=UTF8&iwloc=&output=embed"
frameborder="0"
scrolling="no"
marginheight="0"
marginwidth="0"
></iframe>
<div class="map-bot">
<span>// SE Factory</span>
<p>Beirut Digital District BDD 1243 Basement (Floor -1)</p>
</div>
</div>
<div class="form-right"></div>
</div> -->
</div>
</section>
<section class="partners">
<div class="default-container">
<div class="default-section-title">
<div class="default-arrow">></div>
<div class="default-title">Partners</div>
<div class="default-circles">
<div class="default-circle-black"></div>
<div class="default-circle-grey"></div>
<div class="default-circle-green"></div>
</div>
</div>
<div class="partners-row">
<div class="partner"><img src="./assets/images/1.png" alt="" /></div>
<div class="partner"><img src="./assets/images/2.png" alt="" /></div>
<div class="partner">
<img src="./assets/images/3 (2).png" alt="" />
</div>
<div class="partner"><img src="./assets/images/4.png" alt="" /></div>
<div class="partner"><img src="./assets/images/5.png" alt="" /></div>
<div class="partner"><img src="./assets/images/6.png" alt="" /></div>
</div>
<div class="partners-row">
<div class="partner"><img src="./assets/images/7.png" alt="" /></div>
<div class="partner"><img src="./assets/images/8.png" alt="" /></div>
<div class="partner"><img src="./assets/images/9.png" alt="" /></div>
<div class="partner"><img src="./assets/images/10.png" alt="" /></div>
<div class="partner"><img src="./assets/images/11.png" alt="" /></div>
<div class="partner">
<img src="./assets/images/12 (2).png" alt="" />
</div>
</div>
</div>
</section>
<section class="footer">
<div class="newsletter">
<div class="newsletter-container">
<form class="newsletter-container-form">
<div class="Subscribe">
Subscribe to our <span class="green">newsletter</span><br /><span
class="up-to-date"
>and stay up-to-date with our latest news.</span
><br />
</div>
<div class="footer-form-block-two">
<input class="text-field" type="email" /><input
class="text-submit"
type="submit"
/>
</div>
</form>
</div>
</div>
<div class="bot-footer">
<div class="bot-footer-container">
<div class="footer-row">
<div class="footer-innerrow footer-link">
<div class="footer-col">
<div>SE FACTORY</div>
<a>Home</a>
<a>Hello world!</a>
<a>Milestones</a>
<a>Programs</a>
<a>Hire Talent</a>
</div>
<div class="footer-col">
<a>Home</a>
<a>Hello world!</a>
<a>Milestones</a>
<a>Programs</a>
<a>Hire Talent</a>
</div>
</div>
<div class="footer-innerrow">
<div class="footer-col logo-footer">
<div><img src="./assets/images/logo square.svg" alt="" /></div>
<div class="footer-row icons">
<div>
<img
src="./assets/images/63e41a1834aa765e91f927bd_icons8-instagram.svg"
alt=""
/>
<img
src="./assets/images/63e41a1834aa7699a9f927bc_icons8-facebook.svg"
alt=""
/>
<img
src="./assets/images/63e41a189a7f57668a195e50_icons8-linkedin.svg"
alt=""
/>
<img
src="./assets/images/63e41a1842aa63d5cb3caf67_icons8-youtube-logo.svg"
alt=""
/>
<img
src="./assets/images/63e41a1877c34a0d23ce8882_icons8-twitter.svg"
alt=""
/>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer-row">
<div class="footer-col"></div>
<div class="footer-col"></div>
</div>
</div>
</section>
<script src="./scripts/script.js"></script>
</body>
</html>