-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
658 lines (582 loc) · 31 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
<!--
Author: W3layouts
Author URL: http://w3layouts.com
-->
<!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">
<title>kobros-tech, Mohamed Alkobrosli</title>
<!-- add icon link -->
<link rel = "icon" href = "static/images/logo_1_r.png" type = "image/x-icon">
<!-- web fonts -->
<link href="//fonts.googleapis.com/css?family=Nunito:400,600,700,800,900&display=swap" rel="stylesheet">
<link href="//fonts.googleapis.com/css?family=Hind&display=swap" rel="stylesheet">
<!-- //web fonts -->
<!-- Template CSS -->
<link rel="stylesheet" href="static/css/style-starter.css">
</head>
<body>
<section class="w3l-bootstrap-header">
<nav class="navbar navbar-expand-lg navbar-light py-lg-3 py-2">
<div class="container">
<a class="navbar-brand" href="index.html"> kobros-tech</a>
<!-- if logo is image enable this -->
<a class="navbar-brand" href="index.html">
<img src="static/images/logo_white.png" alt="kobros-tech" title="kobros-tech" style="height:35px;" />
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon fa fa-bars"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="blended_learning.html">Blended Learning Project</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link" href="http://blog.kobros-tech.com">Enlighten Mind</a>
</li>
</ul>
</div>
</div>
</nav>
</section>
<!-- Main banner section -->
<section class="w3l-main-banner" id="home">
<div class="companies20-content">
<div class="companies-wrapper">
<div class="item">
<div class="slider-info banner-view text-center">
<div class="banner-info container">
<img src="static/images/Capture.png" alt="about image" class="img-fluid">
<h3 class="banner-text mt-5">Hello, I’m Mohamed Alkobrosli
</h3>
<p class="my-4 mb-5">Web Developer | Python Programmer | CS50 teacher</p><br>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- //Main banner section -->
<section class="w3l-about ">
<div class="skills-bars py-5">
<div class="container py-md-3">
<div class="heading text-center mx-auto">
<h3 class="head">Welcome To My Site</h3>
<p class="my-3 head"> There are limitless routes that we can follow aiming for making favor. If you are very grateful
to somepeople and they are no longer with us, how can you return the favor? I debt favor to good people for
lifelong. The best method for returning the favor is that I make favor with all others for lifelong because my
favor will return directly to all who made favor with me.</p>
</div>
<div class="row mt-5 pt-3">
<div class="col-lg-4 col-md-4 col-sm-6 skills-bar-grids mb-4 pb-2">
<h4>Education Development</h4>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-color" role="progressbar" style="width: 50% ;height:4px;" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 skills-bar-grids mb-4 pb-2">
<h4>Learning</h4>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-color" role="progressbar" style="width: 80% ;height:4px;" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 skills-bar-grids mb-4 pb-2">
<h4>Web Development</h4>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-color" role="progressbar" style="width: 60% ;height:4px;" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 skills-bar-grids mb-4 pb-2">
<h4>Teaching</h4>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-color" role="progressbar" style="width: 70% ;height:4px;" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 skills-bar-grids mb-4 pb-2">
<h4>Geophysics</h4>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-color" role="progressbar" style="width: 90% ;height:4px;" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 skills-bar-grids ">
<h4>Garment Dye</h4>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-color" role="progressbar" style="width: 80% ;height:4px;" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="w3l-feature-3" id="features">
<div class="grid top-bottom">
<div class="container">
<div class="heading text-center mx-auto">
<h3 class="head text-white">I'm Available For Hire</h3>
<p class="my-3 head text-white"> I have the experience, skill, and enormous energy through them I could
achieve this work.</p>
</div>
<div class="middle-section grid-column text-center mt-5 pt-3">
<div class="three-grids-columns">
<span class="fa fa-graduation-cap"></span>
<h4>Education Development</h4>
<p>I was thinking about improving the ways that we get learned since my first day in the faculty and also
making use of all possibilities available. I did not catch the chance to make a good change until I graduated
then worked and married, I am trying to spread out the idea of how to improve your life by investing in
yourself trough gaining useful education at low cost, so that I call for applying the blended learning
project.</p>
</div>
<div class="three-grids-columns">
<span class="fa fa-bar-chart"></span>
<h4>Data Science</h4>
<p>I am aiming to be a data scientist, and I am working on that. I have started online learning computer science
from Harvard University. I will continue working and learning computer & data sciences from top universities
in the world.</p>
</div>
<div class="three-grids-columns">
<span class="fa fa-industry"></span>
<h4>Web Development</h4>
<p>I started in web development as a tester at test IO and then after studying CS50 and Linux I took a step deeper in developing Odoo framework</p>
</div>
</div>
</div>
</div>
</section>
<div class="products-4" id="portfolio">
<!-- Products4 block -->
<div id="products4-block" class="text-center">
<div class="container">
<div class="heading text-center mx-auto mb-5">
<h3 class="head">I Love What I Do</h3>
<p class="my-3 head">I have many excellent skills, I inherited some of them, and I learned the rest of
them through my life.</p>
</div>
<input id="tab4" type="radio" name="tabs" checked>
<label class="tabtle" for="tab4">Technology</label>
<input id="tab1" type="radio" name="tabs" >
<label class="tabtle" for="tab1">My Father</label>
<input id="tab2" type="radio" name="tabs">
<label class="tabtle" for="tab2">Training</label>
<input id="tab3" type="radio" name="tabs">
<label class="tabtle" for="tab3">Appreciation</label>
<section id="content4" class="tab-content text-left">
<div class="d-grid grid-col-3">
<div class="product">
<a href="static\images\technology\certificate_1.jpeg" data-lightbox="example-set"
data-title="A certificate I got from Harvard University for achieving CS50x course.">
<figure>
<img src="static\images\technology\certificate_1.jpeg" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\technology\certificate_2.jpeg" data-lightbox="example-set"
data-title="A certificate I got from Harvard University for achieving CS50 python course.">
<figure>
<img src="static\images\technology\certificate_2.jpeg" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\technology\certificate_3.jpeg" data-lightbox="example-set"
data-title="The verified certificate that I got from Harvard University and edX for completing the educationa program in CS50x and CS50P">
<figure>
<img src="static\images\technology\certificate_3.jpeg" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\technology\certificate_4.jpeg" data-lightbox="example-set"
data-title="A certificate I got from Continuing Education Division in Harvard University for teaching CS50 courses">
<figure>
<img src="static\images\technology\certificate_4.jpeg" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\technology\certificate_5.jpeg" data-lightbox="example-set"
data-title="The verified certificate that I got from Linux Foundation and edX for taking Linux course">
<figure>
<img src="static\images\technology\certificate_5.jpeg" class="img-responsive" alt="" />
</figure>
</a>
</div>
</div>
</section>
<section id="content1" class="tab-content text-left">
<div class="d-grid grid-col-3">
<div class="product">
<a href="static\images\Mostafa_Alkobrosli\Mostafa_profile.jpg" data-lightbox="example-set"
data-title="A photo of my father, Mostafa Alkobrosli">
<figure>
<img src="static\images\Mostafa_Alkobrosli\Mostafa_profile.jpg" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\Mostafa_Alkobrosli\Mostafa_profile_2.jpg" data-lightbox="example-set"
data-title="Nice words my father wrote to me on 5/6/2004 in the back of his photo.">
<figure>
<img src="static\images\Mostafa_Alkobrosli\Mostafa_profile_2.jpg" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\Mostafa_Alkobrosli\radio_diagram.png" data-lightbox="example-set"
data-title="Simple radio design, this radio can collect three stations depending on the length of the antenna. The radio can work lifelong naturally without any human interference.">
<figure>
<img src="static\images\Mostafa_Alkobrosli\radio_diagram.png" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\Mostafa_Alkobrosli\car_design.jpg" data-lightbox="example-set"
data-title="My father has designed this car.">
<figure>
<img src="static\images\Mostafa_Alkobrosli\car_design.jpg" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\Mostafa_Alkobrosli\soap_machine.jpg" data-lightbox="example-set"
data-title="This is a machine designed by my father for making soap.">
<figure>
<img src="static\images\Mostafa_Alkobrosli\soap_machine.jpg" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\Mostafa_Alkobrosli\house_diagram.jpg" data-lightbox="example-set"
data-title="This is a house diagram designed by my father.">
<figure>
<img src="static\images\Mostafa_Alkobrosli\house_diagram.jpg" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\Mostafa_Alkobrosli\franchise.jpg" data-lightbox="example-set"
data-title="Franchise and advertising logo designed by my father.">
<figure>
<img src="static\images\Mostafa_Alkobrosli\franchise.jpg" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\Mostafa_Alkobrosli\franchise_2.jpg" data-lightbox="example-set"
data-title="Franchise and advertising logo designed by my father.">
<figure>
<img src="static\images\Mostafa_Alkobrosli\franchise_2.jpg" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\Mostafa_Alkobrosli\promotion.jpg" data-lightbox="example-set"
data-title="Congratulations letter sent to my father after a promotion he has got because of being excellent in his work.">
<figure>
<img src="static\images\Mostafa_Alkobrosli\promotion.jpg" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\Mostafa_Alkobrosli\messenger.jpg" data-lightbox="example-set"
data-title="Official letter delivered by my father to the sector head.">
<figure>
<img src="static\images\Mostafa_Alkobrosli\messenger.jpg" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\Mostafa_Alkobrosli\before_marriage.jpg" data-lightbox="example-set"
data-title="Funny drawing describing my father before marriage, he was handsome, happy and not bearded.">
<figure>
<img src="static\images\Mostafa_Alkobrosli\before_marriage.jpg" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\Mostafa_Alkobrosli\after_marriage.jpg" data-lightbox="example-set"
data-title="Funny drawing describing my father after marriage, he became ugly, sad and bearded.">
<figure>
<img src="static\images\Mostafa_Alkobrosli\after_marriage.jpg" class="img-responsive" alt="" />
</figure>
</a>
</div>
</div>
</section>
<section id="content2" class="tab-content text-left">
<div class="d-grid grid-col-3">
<div class="product">
<a href="static\images\training\english.jpg" data-lightbox="example-set"
data-title="A certificate I got from British Council in Cairo for achieving the conversation course.">
<figure>
<img src="static\images\training\english.jpg" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\training\training_1.jpg" data-lightbox="example-set"
data-title="A certificate I got from a petroleum company in Suez for achieving the training there.">
<figure>
<img src="static\images\training\training_1.jpg" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\training\training_2.jpg" data-lightbox="example-set"
data-title="A certificate I got from a mining company in Aswan for achieving the training there.">
<figure>
<img src="static\images\training\training_2.jpg" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\training\training_3.jpg" data-lightbox="example-set"
data-title="A certificate I got from Desert Research Center in Cairo for achieving the training there.">
<figure>
<img src="static\images\training\training_3.jpg" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\training\training_4.jpg" data-lightbox="example-set"
data-title="A certificate I got from my faculty in Mansoura for achieving the seismic course there.">
<figure>
<img src="static\images\training\training_4.jpg" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\training\training_5.jpg" data-lightbox="example-set"
data-title="A certificate I got from Souha Academy in Cairo for achieving the laptop maintenance course there.">
<figure>
<img src="static\images\training\training_5.jpg" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\training\training_6.jpg" data-lightbox="example-set"
data-title="A certificate I got from a training center in Mansoura for achieving the C sharp programming course there.">
<figure>
<img src="static\images\training\training_6.jpg" class="img-responsive" alt="" />
</figure>
</a>
</div>
</div>
</section>
<section id="content3" class="tab-content text-left">
<div class="d-grid grid-col-3">
<div class="product">
<a href="static\images\appreciation\fair.jpg" data-lightbox="example-set"
data-title="Certificate of Appreciation for my participation in the Intel-Powered ISEF Science and Engineering Fair.">
<figure>
<img src="static\images\appreciation\fair.jpg" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\appreciation\taekwondo.jpg" data-lightbox="example-set"
data-title="Certificate from the Taekwondo Federation that I have a yellow belt">
<figure>
<img src="static\images\appreciation\taekwondo.jpg" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\appreciation\jump.jpg" data-lightbox="example-set"
data-title="During the training I am trying to jump and hit the sandbag.">
<figure>
<img src="static\images\appreciation\jump.jpg" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\appreciation\scouts.jpg" data-lightbox="example-set"
data-title="Certificate of appreciation for my participation in the various activities of the Scout Group.">
<figure>
<img src="static\images\appreciation\scouts.jpg" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\appreciation\scout_team.jpg" data-lightbox="example-set"
data-title="My picture with the university scout team in the presence of the president of the university.">
<figure>
<img src="static\images\appreciation\scout_team.jpg" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\appreciation\drawing.jpg" data-lightbox="example-set"
data-title="I've been drawing since school-days.">
<figure>
<img src="static\images\appreciation\drawing.jpg" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\appreciation\dyeing.jpg" data-lightbox="example-set"
data-title="A range of colors that I accomplished during my years of dyeing.">
<figure>
<img src="static\images\appreciation\dyeing.jpg" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\appreciation\Aswan.jpg" data-lightbox="example-set"
data-title="A photo of me with my colleagues during a training trip in a mining company.">
<figure>
<img src="static\images\appreciation\Aswan.jpg" class="img-responsive" alt="" />
</figure>
</a>
</div>
<div class="product">
<a href="static\images\appreciation\father_son.jpg" data-lightbox="example-set"
data-title="The baby on the right is me and the baby on the left is my son. Is there any difference between the two babies?">
<figure>
<img src="static\images\appreciation\father_son.jpg" class="img-responsive" alt="" />
</figure>
</a>
</div>
</div>
</section>
</div>
</div>
<!-- Products4 block -->
</div>
<script src="static/js/jquery-3.3.1.min.js"></script>
<script src="static/js/lightbox-plus-jquery.min.js"></script>
<section class="services-12" id="experience">
<div class="form-12-content">
<div class="container">
<div class="grid grid-column-2 ">
<div class="column1">
<h3 class="mb-5">Experiences</h3>
<div class="experience-top">
<h5>2018 - 2022</h5>
<h4>Chemist & Garment Dye Supervisor</h4>
<p class="my-3 text-white">By the end of New Suez Canal projects I decided to take the most stable work at
Free Zone in Port-Said.</p>
</div>
<div class="experience-top">
<h5>2018</h5>
<h4>Ready Mix Laboratory Technical at CHP Company, a branch of Suez Canal Authority</h4>
<p class="my-3 text-white">By changing the accommodation city I chose there the most active field. It was
construction of new Suez Canal platform.</p>
</div>
<div class="experience-top">
<h5>2017</h5>
<h4>Pharmacist Assistant at El-Tarshoby Pharmacies</h4>
<p class="my-3 text-white">In order to spread out my experience in the field of medicine, and to be aware
of all kinds of medicals in the market.</p>
</div>
<div class="experience-top">
<h5>2016</h5>
<h4>Medical Representative at Prima Pharm Company For Cosmetics</h4>
<p class="my-3 text-white">Just after graduation I have tried to find a field to afford myself, and
medicine field was flourished.</p>
</div>
</div>
<div class="column2">
<h3 class="mb-5">Education</h3>
<div class="experience-top">
<h5>2021-NOW</h5>
<h4>Computer Science from Harvard University</h4>
<p class="my-3 text-white">I have been studying computer science online from Harvard University.</p>
</div>
<div class="experience-top">
<h5>2016</h5>
<h4>Bachelor of Science in Geophysics from Mansoura University</h4>
<p class="my-3 text-white">I got my bachelor's degree from Mansoura University with a grade of good.</p>
</div>
<div class="experience-top">
<h5>2011</h5>
<h4>High School certificate</h4>
<p class="my-3 text-white">I achieved high degree in high school, about 91.7% total.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- grids block 5 -->
<section class="w3l-footer-29-main" id="footer">
<div class="footer-29 text-center">
<div class="container">
<div class="main-social-footer-29">
<a href="https://www.facebook.com/mohamed.alkobrosly/" class="facebook"><span class="fa fa-facebook"></span></a>
<a href="https://www.youtube.com/@kobros-tech/" ><span class="fa fa-youtube-play"></span></a>
<a href="https://github.com/kobros-tech/" ><span class="fa fa-github"></span></a>
<a href="https://www.pinterest.com/alkobrosly/" ><span class="fa fa-pinterest-p"></span></a>
<a href="https://www.linkedin.com/in/mohamed-alkobrosly/" class="linkedin"><span class="fa fa-linkedin"></span></a>
</div>
<div class="bottom-copies text-center">
<p class="copy-footer-29">© 2022 kobros-tech.com. All rights reserved | Designed by <a href="https://w3layouts.com">W3layouts</a></p>
</div>
</div>
</div>
<!-- move top -->
<button onclick="topFunction()" id="movetop" title="Go to top">
<span class="fa fa-angle-up"></span>
</button>
<script>
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function () {
scrollFunction()
};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
document.getElementById("movetop").style.display = "block";
} else {
document.getElementById("movetop").style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
<!-- /move top -->
</section>
<!-- // grids block 5 -->
<script src="static/js/jquery-3.3.1.min.js"></script>
<!-- //footer-28 block -->
</section>
<script>
$(function () {
$('.navbar-toggler').click(function () {
$('body').toggleClass('noscroll');
})
});
</script>
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous">
</script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous">
</script>
<!-- Smooth scrolling -->
</body>
</html>
<!-- // grids block 5 -->