This repository has been archived by the owner on May 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 227
/
index.html
340 lines (315 loc) · 15.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="Zero To Mastery Official Website. Learn HTML, CSS, JavaScript, ReactJS, NodeJS, PostgreSQL, Python, Algorithms and Data Structures at ZTM." />
<meta name="author" content="" />
<title>Zero To Mastery - Become a Web Dev Today</title>
<link rel="icon" type="image/png" href="./assets/images/favicon.ico" />
<!-- Bootstrap core CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<!--Animation On Scroll-->
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css">
<!-- Custom styles for this template -->
<link href="./assets/css/style.css" rel="stylesheet" />
<link href="./assets/css/carousel.css" rel="stylesheet" />
</head>
<body>
<!-- Navigation -->
<div id="nav"></div>
<header>
<div class="carousel slide" data-ride="carousel" data-interval="4000" id="carousel-1">
<div class="carousel-inner" role="listbox">
<!-- Slide 1 -->
<div class="carousel-item active" role="option">
<img class="img-fluid w-100 d-block" srcset="
./assets/images/slide-images/slide1-xs.jpg 600w,
./assets/images/slide-images/slide1-s.jpg 900w,
./assets/images/slide-images/slide1-m.jpg 1200w,
./assets/images/slide-images/slide1-l.jpg 1920w
" src="./assets/images/slide-images/slide1-xs.jpg" alt="Slide Image" />
<div class="carousel-caption">
<h3 class="animated slideInDown">Coding Challenge</h3>
<p class="animated slideInLeft">
Monthly challenges, designed to push your skills to the next
level!
</p>
<a href="./projects/coding-challenges.html" class="btn btn-outline-light btn-lg animated slideInUp" target="_blank">Read
More</a>
</div>
</div>
<!-- Slide 2 -->
<div class="carousel-item" role="option">
<img class="img-fluid w-100 d-block" srcset="
./assets/images/slide-images/slide2-xs.jpg 600w,
./assets/images/slide-images/slide2-s.jpg 900w,
./assets/images/slide-images/slide2-m.jpg 1200w,
./assets/images/slide-images/slide2-l.jpg 1920w
" src="./assets/images/slide-images/slide2-xs.jpg" alt="Slide Image" />
<div class="carousel-caption">
<h3 class="animated fadeInDown">Collaboration Projects</h3>
<p class="animated slideInUp">
Open source community projects, work with others to create
something awesome
</p>
<a href="./projects/collaboration-projects.html"
class="btn btn-outline-light btn-lg animated slideInUp" target="_blank">Read More</a>
</div>
</div>
<!-- Slide 3 -->
<div class="carousel-item" role="option">
<img class="img-fluid w-100 d-block" srcset="
./assets/images/slide-images/slide3-xs.jpg 600w,
./assets/images/slide-images/slide3-s.jpg 900w,
./assets/images/slide-images/slide3-m.jpg 1200w,
./assets/images/slide-images/slide3-l.jpg 1920w
" src="./assets/images/slide-images/slide3-xs.jpg" alt="Slide Image" />
<div class="carousel-caption">
<h3 class="animated slideInDown">Useful Resources</h3>
<p class="animated slideInLeft">
Student collated resources and articles repository
</p>
<a href="./community/resources.html" class="btn btn-outline-light btn-lg animated slideInUp" target="_blank">Read More</a>
</div>
</div>
<!-- Slide 4 -->
<div class="carousel-item" role="option">
<img class="img-fluid w-100 d-block" srcset="
./assets/images/slide-images/slide4-xs.jpg 600w,
./assets/images/slide-images/slide4-s.jpg 900w,
./assets/images/slide-images/slide4-m.jpg 1200w,
./assets/images/slide-images/slide4-l.jpg 1920w
" src="./assets/images/slide-images/slide4-xs.jpg" alt="Slide Image" />
<div class="carousel-caption">
<h3 class="animated slideInDown">Questions and Answers</h3>
<p class="animated slideInLeft">Ask and answer questions</p>
<a href="./community/questions-board.html" class="btn btn-outline-light btn-lg animated slideInUp" target="_blank">Read
More</a>
</div>
</div>
<!-- Slide 5 -->
<div class="carousel-item" role="option">
<img class="img-fluid w-100 d-block" srcset="
./assets/images/slide-images/slide5-xs.jpg 600w,
./assets/images/slide-images/slide5-s.jpg 900w,
./assets/images/slide-images/slide5-m.jpg 1200w,
./assets/images/slide-images/slide5-l.jpg 1920w
" src="./assets/images/slide-images/slide5-xs.jpg" alt="Slide Image" />
<div class="carousel-caption">
<h3 class="animated slideInDown">Community</h3>
<p class="animated slideInLeft">
Join over 22,000 students and developers in the online community
</p>
<a href="./community/discord.html" class="btn btn-outline-light btn-lg animated slideInUp" target="_blank">Read More</a>
</div>
</div>
</div>
<div>
<a class="carousel-control-prev" href="#carousel-1" role="button" data-slide="prev">
<span class="carousel-control-prev-icon">
<i class="la la-cutlery"></i>
</span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carousel-1" role="button" data-slide="next">
<span class="carousel-control-next-icon">
<i class="la la-cutlery"></i>
</span>
<span class="sr-only">Next</span>
</a>
</div>
<ol class="carousel-indicators">
<li data-target="#carousel-1" data-slide-to="0" class="active"></li>
<li data-target="#carousel-1" data-slide-to="1"></li>
<li data-target="#carousel-1" data-slide-to="2"></li>
<li data-target="#carousel-1" data-slide-to="3"></li>
<li data-target="#carousel-1" data-slide-to="4"></li>
</ol>
</div>
</header>
<!-- Language Section -->
<section class="langs py-5">
<div class="container text-center">
<img src="./assets/images/lang/html.png" alt="HTML5" data-aos="fade-up" data-aos-duration="1000"/>
<img src="./assets/images/lang/css.png" alt="CSS3" data-aos="fade-up" data-aos-duration="1000"/>
<img src="./assets/images/lang/javascript.png" alt="JavaScript" data-aos="fade-up" data-aos-duration="1000"/>
</div>
</section>
<!-- Video Section -->
<section id="about" class="bg-dark">
<div class="container bg-dark text-center p-5">
<!-- Title -->
<div class="videoTitles text-center">
<h3 class="text-light" data-aos="fade-right" data-aos-duration="1000">Become a Web Developer</h3>
<h2 class="display-4" data-aos="fade-left" data-aos-duration="500">Start Today!</h2>
</div>
<!-- Video -->
<div class="desktop-wrapper my-5" data-aos="fade-up" data-aos-duration="1000">
<div onclick='play("https://www.youtube.com/embed/sCX_YMPuJGA?autoplay=1")' class="playicon " id="vidwrap">
</div>
</div>
<!-- Description -->
<p data-aos="fade-right" data-aos-duration="750">
<em>"The Complete Web Developer in <span class="year"></span>: Zero to Mastery"</em> is a
complete full-stack web development course, with the latest and most
in-demand technologies, for anyone trying to learn web development in
2019.
<br />
<br />
Learn to code with us, join the community and practice the skills you
gained from the course, build up your portfolio by contributing to
projects, and become a job ready web developer this year.
</p>
</div>
</section>
<!-- Course Section -->
<section id="course" class="container py-5">
<div class="row justify-content-center">
<!-- ZTM -->
<div class="card coursecard col-12 col-md-5 col-lg-3 p-0" data-aos="fade-up" data-aos-duration="500">
<img class="card-img-top" src="./assets/images/course-images/zerotomastery.jpg" alt="Andrei Neagoie Complete Web Developer Course Image" />
<div class="card-body">
<h5 class="card-title">
The Complete Web Developer in <span class="year"></span>: Zero to Mastery
</h5>
<p class="card-text">
Learn to code and become a web developer in <span class="year"></span> with HTML5, CSS3,
JavaScript (ES2019), ReactJS, ExpressJS, NodeJS, PostgreSQL, Machine Learning and more by making fun and exciting projects along the way!
</p>
</div>
<div class="card-footer text-center">
<a href="./courses/zero-to-mastery.html" class="btn btn-outline-warning" target="_blank">View Course</a>
</div>
</div>
<!-- J2S -->
<div class="card coursecard col-12 col-md-5 col-lg-3 p-0" data-aos="fade-up" data-aos-duration="1000">
<img class="card-img-top" src="./assets/images/course-images/j2s.jpg" alt="Andrei Neagoie Junior to Senior Developer Course Image" />
<div class="card-body">
<h5 class="card-title">
The Complete Junior to Senior Web Developer Roadmap (<span class="year"></span>)
</h5>
<p class="card-text">
This is the tutorial you've been looking for to no longer be a
junior developer, level up your skills, and earn a higher salary.
This extensive course doesn’t just cover a small portion of the
industry.
</p>
</div>
<div class="card-footer text-center">
<a href="./courses/junior-to-senior.html" class="btn btn-outline-warning" target="_blank">View Course</a>
</div>
</div>
<!-- MCI -->
<div class="card coursecard col-12 col-md-5 col-lg-3 p-0" data-aos="fade-up" data-aos-duration="1500">
<img class="card-img-top" src="./assets/images/course-images/mastering-interviews.jpg" alt="Andrei Neagoie Data Structures and Algorithms Course Image" />
<div class="card-body">
<h5 class="card-title">
Master the Coding Interview: Data Structures + Algorithms
</h5>
<p class="card-text">
Using the strategies, lessons, and exercises in this course, you
will learn how to land offers from great tech companies like
Google, Microsoft, Facebook, Netflix, Amazon and more!
</p>
</div>
<div class="card-footer text-center">
<a href="./courses/master-the-coding-interview.html" class="btn btn-outline-warning" target="_blank">View Course</a>
</div>
</div>
<!-- AJC -->
<div class="card coursecard col-12 col-md-5 col-lg-3 p-0" data-aos="fade-up" data-aos-duration="1000">
<img class="card-img-top" src="./assets/images/course-images/AJC.jpg" alt="Andrei Neagoie Advanced JavaScript Concepts Course Image" />
<div class="card-body">
<h5 class="card-title">
Advanced JavaScript Concepts
</h5>
<p class="card-text">
You will become a top 10% javascript developer by going beyond the
superficial basics that a lot of courses cover. We are going to
dive deep and come out the other end a confident advanced
javascript developer.
</p>
</div>
<div class="card-footer text-center">
<a href="./courses/advanced-javascript.html" class="btn btn-outline-warning" target="_blank">View Course</a>
</div>
</div>
<!-- CRD -->
<div class="card coursecard col-12 col-md-5 col-lg-3 p-0" data-aos="fade-up" data-aos-duration="1500">
<img class="card-img-top" src="./assets/images/course-images/complete-react-developer.jpg" alt="Andrei Neagoie Complete React Developer Course Image" />
<div class="card-body">
<h5 class="card-title">
Complete React Developer in <span class="year"></span>
</h5>
<p class="card-text">
Become a Senior React Developer! Build a massive E-commerce app
with Redux, Hooks, GraphQL, ContextAPI, Stripe, Firebase. Master React design patterns and
develop a E-Commerce React application with above skills.
</p>
</div>
<div class="card-footer text-center">
<a href="./courses/complete-react-developer.html" class="btn btn-outline-warning" target="_blank">View Course</a>
</div>
</div>
<!-- CPD -->
<div class="card coursecard col-12 col-md-5 col-lg-3 p-0" data-aos="fade-up" data-aos-duration="1500">
<img class="card-img-top" src="./assets/images/course-images/complete-python-developer.jpg" alt="Andrei Neagoie Complete Python Developer in 2019 Zero to Mastery Course Image" />
<div class="card-body">
<h5 class="card-title">
Complete Python Developer in <span class="year"></span>
</h5>
<p class="card-text">
How to become a Python 3 Developer and get hired! Build 12+ projects, learn Web Development, Machine Learning, Data Science, Web Scraping, processing images, CSVs, PDFs and other files and much more.
</p>
</div>
<div class="card-footer text-center">
<a href="./courses/complete-python-developer.html" class="btn btn-outline-warning" target="_blank">View Course</a>
</div>
</div>
<!-- MLDS -->
<div class="card coursecard col-12 col-md-5 col-lg-3 p-0" data-aos="fade-up" data-aos-duration="1500">
<img class="card-img-top" src="./assets/images/course-images/MLDS.png" alt="Andrei Neagoie Complete Machine Learning and Data Science: Zero to Mastery Course Image" />
<div class="card-body">
<h5 class="card-title">
Complete Machine Learning and Data Science: Zero to Mastery
</h5>
<p class="card-text">
Learn Data Science, Data Analysis, Machine Learning (Artificial Intelligence) and Python with Tensorflow, Pandas & more!
</p>
</div>
<div class="card-footer text-center">
<a href="./courses/machine-learning-and-data-science.html" class="btn btn-outline-warning" target="_blank">View Course</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<div id="footer"></div>
<script src="./assets/js/scripts.js"></script>
<!-- Bootstrap core JavaScript -->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
offset: 400,
duration: 1000
});
</script>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js" integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js" integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k" crossorigin="anonymous"></script>
<script>
$(function(){
$("#nav").load("nav.html");
$("#footer").load("../footer.html", function() {
getDateFooter();
});
});
</script>
</body>
</html>