forked from zero-to-mastery/HTML-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
instructor.html
567 lines (558 loc) Β· 21 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
556
557
558
559
560
561
562
563
564
565
566
567
<!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">
<style>
#more {display: none;}
</style>
<title>The Web Developer 2020</title>
<link rel="icon" href="resources\images\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://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css"
/>
<link
href="https://fonts.googleapis.com/css?family=Lora|Montserrat&display=swap"
rel="stylesheet"
/>
<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" />
<link rel="stylesheet" href="resources/style/about-page.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" />
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light fixed-top">
<a class="navbar-brand" href="index.html"
><img src="resources/images/logo.png" alt=""
/></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" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item register-link active-link">
<a class="nav-link " href="instructor.html"
>Instructor</a
>
</li>
<li class="nav-item register-link">
<a class="nav-link" href="register.html">Sign Up</a>
</li>
<li class="nav-item register-link">
<a class="nav-link" href="contributersProfile.html">Contributors</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 class="nav-link ml-md-auto" href="beyondztm.html"
>Beyond Zero to Mastery <i class="fas fa-arrow-right"></i
></a>
</nav>
<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"
/> -->
<div class="row">
<div class="col-lg-3 col-md-5">
<img
id="instructor-img"
src="https://img-a.udemycdn.com/user/200_H/38516954_b11c_3.jpg?Ym5P4rP_KwxnUG3SAw1l2kluDrV-hEiL-TFtJWrd_9xuqJfm6vCU-ledxrIro6bNiyEzCi8dLzF3M-j3SXcZd7jX_PJJdh8iXHSshyS8n9ydenhqoES9B6I_gkqL"
alt="Andrei Neagoie"
class="shadow"
/>
</div>
<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">Andrei Neagoie</h2>
<h3 class="animated bounce">
Senior Software Developer turned Instructor
</h3>
</div>
</div>
</div>
<hr />
<div class="about-instructor">
<h2 id="about-title">About Andrei</h2>
<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 that
are overly verbose and inadequate at teaching proper skills. Most
people feel paralyzed and don't know where to start when learning a
complex subject matter, or even worse, most people don't have $20,000
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()" id="myBtn">Read more</button>
<script>
function myFunction() {
var dots = document.getElementById("dots");
var moreText = document.getElementById("more");
var btnText = document.getElementById("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>
<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-a.udemycdn.com/course/480x270/2473048_8255_4.jpg"
class="card-img-top"
alt="..."
/>
<div class="card-desc">
<h5 class="card-title">
Complete Python Developer in 2020: 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-a.udemycdn.com/course/480x270/1430746_2f43_9.jpg"
class="card-img-top"
alt="..."
/>
<div class="card-desc">
<h5 class="card-title">
The Complete Web Developer in 2020: 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-a.udemycdn.com/course/480x270/1917546_682b_2.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-a.udemycdn.com/course/480x270/2365628_0b60_7.jpg"
class="card-img-top"
alt="..."
/>
<div class="card-desc">
<h5 class="card-title">
Complete React Developer in 2020 (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-a.udemycdn.com/course/480x270/2511476_4e38_3.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-a.udemycdn.com/course/480x270/1650610_2673_5.jpg"
class="card-img-top"
alt="..."
/>
<div class="card-desc">
<h5 class="card-title">
The Complete Junior to Senior Web Developer Roadmap (2020)
</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-a.udemycdn.com/course/480x270/2771350_d87b_3.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-a.udemycdn.com/course/480x270/3138058_45fe.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-a.udemycdn.com/course/480x270/3030132_afb3.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-a.udemycdn.com/course/480x270/2851942_0cb0_2.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-a.udemycdn.com/course/480x270/3227583_5e75_5.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-a.udemycdn.com/course/480x270/1501104_967d_12.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">Made by Tatyana K. © All rights reserved ;)</div>
</div>
<script
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"
integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"
integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy"
crossorigin="anonymous"
></script>
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
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>