-
Notifications
You must be signed in to change notification settings - Fork 564
/
instructor.html
555 lines (519 loc) Β· 26.1 KB
/
instructor.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
<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=BIZ+UDPMincho&display=swap" rel="stylesheet">
<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=Kalam:wght@700&display=swap" rel="stylesheet">
<style>
body{
margin: 0px;
padding: 0px;
}
#more {
display: none;
}
p{
font-size: 20px;
padding-left: 40px;
padding-right: 40px;
padding-bottom: 30px;
}
.card{
margin: 25px;
}
#myBtn{
height: 50px;
width: 220px;
font-size: 18px;
margin-left: 780px;
margin-bottom: 20px;
}
.navbar{
background-color: #009999;
position: fixed;
}
#instructor-img{
margin-left: 40px;
margin-top: 20px;
}
#about-title{
padding-left: 40px;
padding-right: 40px;
padding-top: 10px;
padding-bottom: 20px;
}
.col-lg-9col-md-7mt-3info{
margin-top: 100px;
}
.card{
margin: 25px;
}
.navbar{
background-color: #009999;
position: fixed;
}
#instructor-img{
margin-top:15px;
}
div p{
margin-left:10px;
margin-right: 10px;
font-size: 15px;
line-height: 1.5rem;
font-family: 'BIZ UDPMincho', serif;
}
#about-title{
margin-left: 10px;
}
.name{
font-family: 'Kalam', cursive;
font-size: 50px;
}
#myBtn{
color:white;
background-color:rgb(44, 174, 174);
padding: 6px;
border: 1px solid rgb(0, 0, 0);
border-radius: 3px;
margin-left: 10px;
font-size: 14px;
box-shadow: 0px 2px 30px rgb(154, 200, 200);
}
#myBtn:hover{
color:black;
background-color: rgb(255, 255, 255);
border:1px solid black
}
button:active, button:focus{
border:none;
}
</style>
<title>The Web Developer 2021</title>
<link rel="stylesheet" href="resources/style/glitch.css"/>
<link rel="icon" href="resources/images/ZTM_logo.png" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.2/dist/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Lora|Montserrat&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" />
<link rel="stylesheet" href="resources/style/style.css" />
<!-- Dark Mode -->
<link rel="stylesheet" type="text/css" href="resources/style/themeToggle.css" />
<script src="resources/scripts/themeToggle.js" defer></script>
<!-- /Dark Mode -->
<!-- AOS -->
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.no-icons.min.css" rel="stylesheet">
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
</head>
<body>
<!-- navbar -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top">
<a class="navbar-brand" href="index.html"><img src="resources/images/ZTM_logo.png" alt="logo"></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"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link nav-font" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link nav-font" href="about.html">About</a>
</li>
<li class="nav-item active-link">
<a class="nav-link nav-font" href="instructor.html">Instructor</a>
</li>
<li class="nav-item">
<a class="nav-link nav-font" href="register.html">Sign Up</a>
</li>
<li class="nav-item">
<a class="nav-link nav-font" href="contributersProfile.html">Contributors</a>
</li>
<li class="nav-item">
<a class="nav-link nav-font" href="todo_list.html">Student Projects</a>
</li>
<li class="nav-item">
<a class="nav-link nav-font" href="contact-us.html">Contact Us</a>
</li>
</ul>
</div>
<div class="theme-toggle-container">
<span class="theme-toggle-text">Light Mode</span>
<label class="theme-toggle">
<input id="theme-toggle-switch" type="checkbox">
<span class="slider round"></span>
</label>
</div>
<a id="headerText" class="nav-link ml-md-auto nav-font" href="beyondztm.html">Beyond Zero to Mastery <i
class="fas fa-arrow-right"></i></a>
</nav>
<!-- END navbar -->
<div class="first-div" id="instructor_container">
<div class="container-fluid about-container">
<!-- <div id="instructor-title">
<h3 class="animated bounce">Instructor</h3>
<h1 class="animated bounce font-weight-bold">Andrei Neagoie</h1>
<h2 class="animated bounce">
Senior Software Developer turned Instructor
</h2>
</div>
<img
id="instructor-img"
src="https://img-a.udemycdn.com/user/200_H/38516954_b11c_3.jpg"
alt="Andrei Neagoie"
/> -->
<button onclick="myFunction()" id="myBtn">About the instructor</button>
<div class="row">
<div class="col-lg-3 col-md-5">
<img id="instructor-img" src="https://img-c.udemycdn.com/user/200_H/38516954_b11c_3.jpg"
alt="Andrei Neagoie" class="shadow" width="80%" height="80%"/>
</div>
<div class="col-lg-9col-md-7mt-3info">
<h4 class="animated bounce text-muted">Instructor</h4>
<h2 class="animated bounce font-weight-bold name">Andrei Neagoie</h2>
<h3 class="animated bounce">
Senior Software Developer turned Instructor
</h3>
<a href="https://www.linkedin.com/in/andreineagoie/" target="_blank" style="margin-top:10px"><button id="myBtn" >View my profile on Linked In<!-- <i class="fa-brands fa-linkedin">Linked In</i> --></button></a>
</div>
</div>
</div>
<hr />
<div class="about-instructor">
<h2 id="about-title">About Andrei</h2>
<div class="about-text">
<p>
Andrei is the instructor of the highest-rated Development courses on
Udemy as well as one of the fastest-growing. His graduates have moved
on to work for some of the biggest tech companies around the world
like Apple, Google, Tesla, Amazon, JP Morgan, IBM, UNIQLO, etc... He
has been working as a senior software developer in Silicon Valley and
Toronto for many years and is now taking all that he has learned, to
teach programming skills and to help you discover the amazing career
opportunities that being a developer allows in life.
</p>
<p>
An overwhelming number of online courses, tutorials, and books exist that
are overly verbose and inadequate at teaching proper skills. Most
people simply feel <strong>paralyzed</strong> and don't know where to start when learning a
complex subject matter, or even worse, most people don't have $20,000 and 40+ hours a week
to spend on a coding bootcamp. Programming skills should be affordable
and open to all. An education material should teach real-life skills
that are current and they should not waste a student's valuable time.
<span id="dots">...</span><span id="more"> Having learned important lessons from working for Fortune 500
companies, tech startups, to even founding his own business, he is now
dedicating 100% of his time to teaching others valuable software
development skills to take control of their life and work in an
exciting industry with infinite possibilities.
Andrei promises you that there are no other courses out there as
comprehensive and as well explained. He believes that to learn
anything of value, you need to start with the foundation and develop
the roots of the tree. Only from there will you be able to learn
concepts and specific skills(leaves) that connect to the foundation.
Learning becomes exponential when structured in this way.
Taking his experience in educational psychology and coding, Andrei's
courses will take you on an understanding of complex subjects that you
never thought would be possible.
</span>
</p>
<button onclick="myFunction()" class="myBtn">Read more</button>
</div>
<script>
function myFunction() {
var dots = document.getElementById("dots");
var moreText = document.getElementById("more");
var btnText = document.getElementsByClassName("myBtn");
if (dots.style.display === "none") {
dots.style.display = "inline";
btnText.innerHTML = "Read more";
moreText.style.display = "none";
} else {
dots.style.display = "none";
btnText.innerHTML = "Read less";
moreText.style.display = "inline";
}
}
</script>
</div>
<section class="text-gray-600 body-font">
<div class="container mx-auto flex px-5 py-24 md:flex-row flex-col items-center">
<div class="lg:max-w-lg lg:w-full md:w-1/2 w-5/6 mb-10 md:mb-0">
<img class="object-cover object-center rounded" alt="hero" src="https://img-c.udemycdn.com/user/200_H/38516954_b11c_3.jpg">
</div>
<div class="lg:flex-grow md:w-1/2 lg:pl-24 md:pl-16 flex flex-col md:items-start md:text-left items-center text-center">
<h1 class="title-font sm:text-4xl text-3xl mb-4 font-medium text-gray-900">
<br class="hidden lg:inline-block">
</h1>
<div class="col-lg-9 col-md-7 mt-3 info">
<h4 class="animated bounce text-muted">Instructor :</h4>
<h2 class="animated bounce font-weight-bold"><b>Andrei Neagoie</b></h2>
<h3 class="animated bounce">
"Senior Software Developer turned Instructor"
</h3>
</div>
<p class="mb-8 leading-relaxed"></p>
<div class="flex justify-center">
</div>
</div>
</div>
</section>
<section class="text-gray-600 body-font">
<div class="container px-5 py-24 mx-auto">
<div class="flex flex-col text-center w-full mb-20">
<h1 class="text-2xl font-medium title-font mb-4 text-gray-900 tracking-widest">About Andrei</h1>
<p class="lg:w-2/3 mx-auto leading-relaxed text-base"> Andrei is the instructor of the highest-rated Development courses on
Udemy as well as one of the fastest-growing. His graduates have moved
on to work for some of the biggest tech companies around the world
like Apple, Google, Tesla, Amazon, JP Morgan, IBM, UNIQLO, etc... He
has been working as a senior software developer in Silicon Valley and
Toronto for many years and is now taking all that he has learned, to
teach programming skills and to help you discover the amazing career
opportunities that being a developer allows in life.</p>
<p class="lg:w-2/3 mx-auto leading-relaxed text-base"> An overwhelming number of online courses, tutorials, and books exist that
are overly verbose and inadequate at teaching proper skills. Most
people simply feel <strong>paralyzed</strong> and don't know where to start when learning a
complex subject matter, or even worse, most people don't have $20,000 and 40+ hours a week
to spend on a coding bootcamp. Programming skills should be affordable
and open to all. An education material should teach real-life skills
that are current and they should not waste a student's valuable time
<span id="dots">.....</span><span id="more"> Having learned important lessons from working for Fortune 500
companies, tech startups, to even founding his own business, he is now
dedicating 100% of his time to teaching others valuable software
development skills to take control of their life and work in an
exciting industry with infinite possibilities.
Andrei promises you that there are no other courses out there as
comprehensive and as well explained. He believes that to learn
anything of value, you need to start with the foundation and develop
the roots of the tree. Only from there will you be able to learn
concepts and specific skills(leaves) that connect to the foundation.
Learning becomes exponential when structured in this way.
Taking his experience in educational psychology and coding, Andrei's
courses will take you on an understanding of complex subjects that you
never thought would be possible.</p>
<p class="lg:w-2/3 mx-auto leading-relaxed text-base">Read More</p>
</div>
</div>
</div>
<div class="glitch">Zero To Mastery</div> <!--A friend showed me and thought it was cool. Feel free to delete or add something even better.-->
</section>
<h2 style="text-align: center; margin-top: 5%">View Andrei's Courses</h2>
<div style="margin-top: 3%" class="container card-group">
<div class="card" data-aos="fade-right">
<img src="https://img-c.udemycdn.com/course/480x270/2473048_8255_5.jpg" class="card-img-top" alt="..." />
<div class="card-desc">
<h5 class="card-title">
Complete Python Developer in 2021: Zero to Mastery
</h5>
<a href="https://www.udemy.com/course/complete-python-developer-zero-to-mastery/" class="btn btn-danger"
target="_blank">Udemy</a>
<a href="https://academy.zerotomastery.io/p/complete-python-developer-zero-to-mastery"
class="btn btn-primary" target="_blank">Academy</a>
</div>
</div>
<div class="card" data-aos="fade-down">
<img src="https://img-c.udemycdn.com/course/480x270/1430746_2f43_10.jpg" class="card-img-top" alt="..." />
<div class="card-desc">
<h5 class="card-title">
The Complete Web Developer in 2021: Zero to Mastery
</h5>
<a href="https://www.udemy.com/course/the-complete-web-developer-zero-to-mastery/" class="btn btn-danger"
target="_blank">Udemy</a>
<a href="https://academy.zerotomastery.io/p/complete-web-developer-zero-to-mastery" class="btn btn-primary"
target="_blank">Academy</a>
</div>
</div>
<div class="card" data-aos="fade-left">
<img src="https://img-c.udemycdn.com/course/480x270/1917546_682b_3.jpg" class="card-img-top" alt="..." />
<div class="card-desc">
<h5 class="card-title">
Master the Coding Interview: Data Structures + Algorithms
</h5>
<a href="https://www.udemy.com/course/master-the-coding-interview-data-structures-algorithms/"
class="btn btn-danger" target="_blank">Udemy</a>
<a href="https://academy.zerotomastery.io/p/master-the-coding-interview-data-structures-algorithms"
class="btn btn-primary" target="_blank">Academy</a>
</div>
</div>
</div>
<div style="margin-top: 3%" class="container card-group">
<div class="card" data-aos="fade-right">
<img src="https://img-c.udemycdn.com/course/480x270/2365628_0b60_8.jpg" class="card-img-top" alt="..." />
<div class="card-desc">
<h5 class="card-title">
Complete React Developer in 2021 (w/ Redux, Hooks, GraphQL)
</h5>
<a href="https://www.udemy.com/course/complete-react-developer-zero-to-mastery/" class="btn btn-danger"
target="_blank">Udemy</a>
<a href="https://academy.zerotomastery.io/p/complete-react-developer-redux-hooks-graphql-zero-to-mastery"
class="btn btn-primary" target="_blank">Academy</a>
</div>
</div>
<div class="card" data-aos="fade-up">
<img src="https://img-c.udemycdn.com/course/480x270/2511476_4e38_5.jpg" class="card-img-top" alt="..." />
<div class="card-desc">
<h5 class="card-title">
Complete Machine Learning and Data Science: Zero to Mastery
</h5>
<a href="https://www.udemy.com/course/complete-machine-learning-and-data-science-zero-to-mastery/"
class="btn btn-danger" target="_blank">Udemy</a>
<a href="https://academy.zerotomastery.io/p/complete-machine-learning-and-data-science-bootcamp-zero-to-mastery"
class="btn btn-primary" target="_blank">Academy</a>
</div>
</div>
<div class="card" data-aos="fade-left">
<img src="https://img-c.udemycdn.com/course/480x270/1650610_2673_6.jpg" class="card-img-top" alt="..." />
<div class="card-desc">
<h5 class="card-title">
The Complete Junior to Senior Web Developer Roadmap (2021)
</h5>
<a href="https://www.udemy.com/course/the-complete-junior-to-senior-web-developer-roadmap/"
class="btn btn-danger" target="_blank">Udemy</a>
<a href="https://academy.zerotomastery.io/p/the-complete-junior-to-senior-web-developer-roadmap"
class="btn btn-primary" target="_blank">Academy</a>
</div>
</div>
</div>
<div style="margin-top: 3%" class="container card-group">
<div class="card" data-aos="fade-right">
<img src="https://img-c.udemycdn.com/course/480x270/2771350_d87b_4.jpg" class="card-img-top"
alt="Learning to Learn Efficient Learning Zero to Mastery Andrei Neagoie Udemy" />
<div class="card-desc">
<h5 class="card-title">
Learning to Learn [Efficient Learning]: Zero to Mastery
</h5>
<a href="https://www.udemy.com/course/learning-to-learn-efficient-learning-zero-to-mastery/"
class="btn btn-danger" target="_blank">Udemy</a>
<a href="https://academy.zerotomastery.io/p/learning-to-learn-efficient-learning-zero-to-mastery-blueprint"
class="btn btn-primary" target="_blank">Academy</a>
</div>
</div>
<div class="card" data-aos="fade-up">
<img src="https://img-c.udemycdn.com/course/480x270/3138058_45fe_2.jpg" class="card-img-top"
alt="Deno The Complete Guide Zero to Mastery Andrei Neagoie Udemy" />
<div class="card-desc">
<h5 class="card-title">
Deno: The Complete Guide Zero to Mastery
</h5>
<a href="https://www.udemy.com/course/deno-the-complete-guide-zero-to-mastery/" class="btn btn-danger"
target="_blank">Udemy</a>
<a href="https://academy.zerotomastery.io/p/deno-the-complete-guide-zero-to-mastery" class="btn btn-primary"
target="_blank">Academy</a>
</div>
</div>
<div class="card" data-aos="fade-left">
<img src="https://img-c.udemycdn.com/course/480x270/3030132_afb3_2.jpg" class="card-img-top"
alt="JavaScript Web Projects 20 Projects to Build Your Portfolio Zero to Mastery Andrei Neagoie Udemy Jacinto Wong" />
<div class="card-desc">
<h5 class="card-title">
JavaScript Web Projects: 20 Projects to Build Your Portfolio
</h5>
<a href="https://www.udemy.com/course/javascript-web-projects-to-build-your-portfolio-resume/"
class="btn btn-danger" target="_blank">Udemy</a>
<a href="https://academy.zerotomastery.io/p/javascript-projects" class="btn btn-primary"
target="_blank">Academy</a>
</div>
</div>
</div>
<div style="margin-top: 3%" class="container card-group">
<div class="card" data-aos="fade-right">
<img src="https://img-c.udemycdn.com/course/480x270/2851942_0cb0_3.jpg" class="card-img-top"
alt="Complete SQL plus Databases Bootcamp Zero to Mastery 2021 Andrei Neagoie Udemy Mo Binni" />
<div class="card-desc">
<h5 class="card-title">
Complete SQL + Databases Bootcamp: Zero to Mastery [2021]
</h5>
<a href="https://www.udemy.com/course/complete-sql-databases-bootcamp-zero-to-mastery/"
class="btn btn-danger" target="_blank">Udemy</a>
<a href="https://academy.zerotomastery.io/p/complete-sql-database-bootcamp-zero-to-mastery"
class="btn btn-primary" target="_blank">Academy</a>
</div>
</div>
<div class="card" data-aos="fade-up">
<img src="https://img-c.udemycdn.com/course/480x270/3227583_5e75_6.jpg" class="card-img-top"
alt="Complete Web and Mobile Designer in 2021 UI/UX, Figma, plus more Zero to Mastery Andrei Neagoie Udemy Daniel Schifano" />
<div class="card-desc">
<h5 class="card-title">
Complete Web & Mobile Designer in 2021: UI/UX, Figma, +more
</h5>
<a href="https://www.udemy.com/course/complete-web-designer-mobile-designer-zero-to-mastery/"
class="btn btn-danger" target="_blank">Udemy</a>
<a href="https://academy.zerotomastery.io/p/complete-web-and-mobile-designer" class="btn btn-primary"
target="_blank">Academy</a>
</div>
</div>
<div class="card" data-aos="fade-left">
<img src="https://img-c.udemycdn.com/course/480x270/1501104_967d_13.jpg" class="card-img-top"
alt="JavaScript The Advanced Concepts Zero to Mastery Andrei Neagoie Udemy" />
<div class="card-desc">
<h5 class="card-title">
JavaScript: The Advanced Concepts
</h5>
<a href="https://www.udemy.com/course/advanced-javascript-concepts/" class="btn btn-danger"
target="_blank">Udemy</a>
<a href="https://academy.zerotomastery.io/p/advanced-javascript-concepts" class="btn btn-primary"
target="_blank">Academy</a>
</div>
</div>
</div>
<div style="margin-top: 3%; margin-bottom: 3%" class="container d-flex justify-content-center">
<a class="btn btn-lg btn-danger" href="https://www.udemy.com/user/andrei-neagoie/" target="_blank">View All
Udemy Courses</a>
<a class="btn btn-lg btn-primary" href="https://zerotomastery.io/courses/" target="_blank">View All Academy
Courses</a>
</div>
</div>
<div class="container-fluid footer-container">
<div class="a2a_kit a2a_kit_size_32 a2a_default_style" style="line-height: 32px">
<h5>
If you enjoyed the course like I did, share it so more people can
enjoy it!
</h5>
<div class="buttons">
<a class="a2a_button_facebook"><i class="fab fa-facebook fa-2x"></i></a>
<a class="a2a_button_twitter"><i class="fab fa-twitter fa-2x"></i></a>
<a class="a2a_button_email"><i class="fas fa-envelope-square fa-2x"></i></a>
<a class="a2a_button_whatsapp"><i class="fab fa-whatsapp fa-2x"></i></a>
</div>
</div>
<div id="credits">
<div class="center git">
<a href="https://github.com/zero-to-mastery/HTML-project">
<img id="laptop" src="resources/images/git.svg" title="Repository link" alt="Git Icon" border="2">
</a>
</div>
Made by Tatyana K. © All rights reserved ;)
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"
integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous">
</script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"
integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous">
</script>
<script type="text/javascript" src="resources/scripts/script.js"></script>
<script async src="https://static.addtoany.com/menu/page.js"></script>
<!-- AOS -->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
offset: 200, // offset (in px) from the original trigger point
delay: 0, // values from 0 to 3000, with step 50ms
duration: 500, // values from 0 to 3000, with step 50ms
easing: "ease",
});
</script>
</body>
</html>