-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
453 lines (382 loc) · 22.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<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=Comfortaa&family=Montserrat&family=Mulish&family=Poppins&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css"
integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/fontawesome.min.css"
integrity="sha512-Rcr1oG0XvqZI1yv1HIg9LgZVDEhf2AHjv+9AuD1JXWGLzlkoKDVvE925qySLcEywpMAYA/rkg296MkvqBF07Yw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"
></script>
<link href="https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@1,600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="stylesheet" type="text/css" href="navbar.css" />
<link rel="stylesheet" type="text/css" href="headline.css" />
<link rel="stylesheet" type="text/css" href="landing.css" />
<link rel="stylesheet" type="text/css" href="course.css" />
<link rel="stylesheet" type="text/css" href="testimonials.css" />
<link rel="stylesheet" type="text/css" href="footer.css" />
<link rel="stylesheet" type="text/css" href="faqs.css" />
<title>The React Mega Tutorial</title>
</head>
<body >
<div class="dark-wave"></div>
<div class="curved-div">
<!-- Nav-Bar SECTION -->
<section id="navigation-bar">
<nav class="navbar navbar-expand-lg navbar-light nvb">
<div class="container-fluid">
<div class="navlogo">
<img src="static/logo_white.png" class="img-fluid" alt="Responsive image">
<a class="navbar-brand" href="#navigation-bar">Mega React Tutorial</a>
</div>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<i class="fa fa-bars" aria-hidden="true"></i>
</button>
<span class="navbar-text">
<div class="collapse navbar-collapse" id="navbarText" >
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link " aria-current="page" href="#second-headline">Learning</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#instructor">About the intructor</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#testimonials">The Students</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#faqs">FAQ</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#footer">Contact</a>
</li>
</ul>
</div>
</span>
</div>
</nav>
</section>
<!-- Landing Section -->
<section id="landing-text">
<div class="container">
<div class="row">
<div class="headline col-sm-12">
<h1>Become an expert at ReactJS for FREE!</h1>
</div>
</div>
<div class="row">
<div class="sub-heading col-sm-12">
<p>Learn React from scratch by building cool projects</p>
</div>
</div>
<div class="links">
<a href="#course-details" class="btn btn-md col ml-5 series">Watch the Series</a>
<a href="#course-details" class="btn btn-md col mr-5 curriculum">See the Curriculum</a>
</div>
</div>
</section>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path
fill="#ffffff"
fill-opacity="1"
d="M0,128L60,117.3C120,107,240,85,360,106.7C480,128,600,192,720,208C840,224,960,192,1080,154.7C1200,117,1320,75,1380,53.3L1440,32L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"
></path>
</svg>
</div>
<!-- Second Headline -->
<section id="second-headline">
<div class="info">
<h1>
Why should you learn ReactJS?
</h1>
<img src="static/line.svg" class="img-fluid" alt="Responsive image">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>
</div>
<div class="learn-react">
<div class="row">
<div class="col col-md-7 col-sm-12 lhs">
<div class="lhs-subdiv offset-sm-1">
<h3>Sed ut perspiciatis</h3>
<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur.</p>
<h3>Lorem ipsum dolor</h3>
<p>Amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
<h3>Nemo enim ipsam</h3>
<p>Consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem.</p>
</div>
</div>
<div class="col col-md-5 col-sm-12 col-12 rhs">
<img src="static/whyLearn.svg" class="img-fluid" alt="Responsive image">
</div>
</div>
</div>
</section>
<section id="course-details">
<div class="info">
<h1>
What will we learn in this course?
</h1>
<img src="static/line.svg" class="img-fluid" alt="Responsive image">
</div>
<div class="curriculum_card">
<div class="container">
<div class="row">
<div class="card-layout col-lg-4 col-sm-12 col-md-6">
<div class="card" >
<img class="card-img-top" src="static/image1.png" class="img-fluid" alt="Responsive image">
<div class="card-body">
<h5 class="card-title">React Basics - State, Props, Components.</h5>
<p class="card-text">Learn the basics of ReactJS by building a cool name Suggestion Application.</p>
<a href="#" class="">Watch more <img src="static/arrow.svg" class="img-fluid" alt="Responsive image"></a>
</div>
</div>
</div>
<div class="card-layout col-lg-4 col-sm-12 col-md-6">
<div class="card" >
<img class="card-img-top" src="static/image2.png" class="img-fluid" alt="Responsive image">
<div class="card-body">
<h5 class="card-title">Lifecycle Methods and Network Requests</h5>
<p class="card-text">Learn the basics of ReactJS by building a cool name Suggestion Application.</p>
<a href="#" class="">Watch more <img src="static/arrow.svg" class="img-fluid" alt="Responsive image"></a>
</div>
</div>
</div>
<div class="card-layout col-lg-4 col-sm-12 col-md-6">
<div class="card" >
<img class="card-img-top" src="static/image1.png" class="img-fluid" alt="Responsive image">
<div class="card-body">
<h5 class="card-title">React Basics - State, Props, Components.</h5>
<p class="card-text">Learn the basics of ReactJS by building a cool name Suggestion Application.</p>
<a href="#" class="">Watch more <img src="static/arrow.svg" class="img-fluid" alt="Responsive image"></a>
</div>
</div>
</div>
<div class="card-layout col-lg-4 col-sm-12 col-md-6">
<div class="card" >
<img class="card-img-top" src="static/image1.png" class="img-fluid" alt="Responsive image">
<div class="card-body">
<h5 class="card-title">React Basics - State, Props, Components.</h5>
<p class="card-text">Learn the basics of ReactJS by building a cool name Suggestion Application.</p>
<a href="#" class="">Watch more <img src="static/arrow.svg" class="img-fluid" alt="Responsive image"></a>
</div>
</div>
</div>
<div class="card-layout col-lg-4 col-sm-12 col-md-6">
<div class="card">
<img class="card-img-top" src="static/image2.png" class="img-fluid" alt="Responsive image">
<div class="card-body">
<h5 class="card-title">Lifecycle Methods and Network Requests</h5>
<p class="card-text">Learn the basics of ReactJS by building a cool name Suggestion Application.</p>
<a href="#" class="">Watch more <img src="static/arrow.svg" class="img-fluid" alt="Responsive image"></a>
</div>
</div>
</div>
<div class="card-layout col-lg-4 col-sm-12 col-md-6">
<div class="card">
<img class="card-img-top" src="static/image1.png" class="img-fluid" alt="Responsive image">
<div class="card-body">
<h5 class="card-title">React Basics - State, Props, Components.</h5>
<p class="card-text">Learn the basics of ReactJS by building a cool name Suggestion Application.</p>
<a href="#" class="">Watch more <img src="static/arrow.svg" class="img-fluid" alt="Responsive image"></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="instructor">
<div class="info">
<h1>
About the instructor
</h1>
<img src="static/line.svg" class="img-fluid" alt="Responsive image">
</div>
<div class="instructor-details">
<div class="row">
<div class="col col-md-5 col-sm-12 col-12 lhs2">
<img src="static/instructor-img.png" class="img-fluid" alt="Responsive image">
</div>
<div class="col col-md-5 col-sm-12 offset-sm-1 rhs2">
<h3>Sed ut perspiciatis unde omnis</h3>
<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni</p>
<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni</p>
</div>
</div>
</div>
</section>
<section id="testimonials">
<div class="info">
<h1>What are people saying about it</h1>
<img src="static/line.svg" class="img-fluid" alt="Responsive image">
</div>
<div class="review container">
<!-- Slideshow container -->
<div class="slideshow-container">
<!-- Full-width slides/quotes -->
<div class="mySlides">
<q>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Odio eu pulvinar id magna. Nec vitae eleifend elit malesuada egestas.mLorem ipsum dolor sit amet, consectetur adipiscing elit. Odio eu pulvinar id magna. Nec vitae eleifend elit malesuada egestas.</q>
<p class="author">- John Keats</p>
</div>
<div class="mySlides">
<q>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Odio eu pulvinar id magna. Nec vitae eleifend elit malesuada egestas.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Odio eu pulvinar id magna. Nec vitae eleifend elit malesuada egestas.</q>
<p class="author">- Ernest Hemingway</p>
</div>
<div class="mySlides">
<q>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Odio eu pulvinar id magna. Nec vitae eleifend elit malesuada egestas.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Odio eu pulvinar id magna. Nec vitae eleifend elit malesuada egestas.</q>
<p class="author">- Thomas A. Edison</p>
</div>
</div>
<div class="dot-container">
<a class="prev" onclick="plusSlides(-1)"><img src="static/arrow.svg" class="img-fluid" alt="Responsive image" style="-webkit-transform: scaleX(-1); transform: scaleX(-1);" ></a>
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
<a class="next" onclick="plusSlides(1)"><img src="static/arrow.svg" class="img-fluid" alt="Responsive image"></a>
</div>
</div>
</section>
<section id="faqs">
<div class="info">
<h1>Frequently Asked Questions</h1>
<img src="static/line.svg" class="img-fluid" alt="Responsive image">
</div>
<div class="layout row">
<div class="col col-md-8 col-sm-12 offset-md-4 ">
<div class="accordion">
<div class="row accordion__question">
<img src="static/react.png" class="col col-md-2 img-fluid react-logo" alt="Responsive image">
<p class="col col-md-6 col-sm-10">Where is Taj Mahal located?</p><i class="col col-md-2 col-sm-2 offset-md-2 fas fa-angle-down"></i>
</div>
<div class="row accordion__answer">
<p class="col col-md-6 offset-sm-1">Taj Mahal is located in Agra, Uttar Pradesh.</p>
<img src="static/faq_vector.png" class="img-fluid col col-md-4 ans" alt="Responsive image">
</div>
</div>
<div class="accordion">
<div class="row accordion__question">
<img src="static/react.png" class="col col-md-2 img-fluid react-logo" alt="Responsive image">
<p class="col col-md-6 col-sm-8">Where is Taj Mahal located?</p><i class="col col-md-2 col-sm-2 offset-md-2 fas fa-angle-down"></i>
</div>
<div class="row accordion__answer">
<p class="col col-md-6 offset-sm-1 ">Taj Mahal is located in Agra, Uttar Pradesh.</p>
<img src="static/faq_vector.png" class="img-fluid col col-md-4 ans" alt="Responsive image">
</div>
</div>
<div class="accordion">
<div class="row accordion__question">
<img src="static/react.png" class="col col-md-2 img-fluid react-logo" alt="Responsive image">
<p class="col col-md-6 col-sm-8">Where is Taj Mahal located?</p><i class="col col-md-2 col-sm-2 offset-md-2 fas fa-angle-down"></i>
</div>
<div class="row accordion__answer">
<p class="col col-md-6 offset-sm-1 ">Taj Mahal is located in Agra, Uttar Pradesh.</p>
<img src="static/faq_vector.png" class="img-fluid col col-md-4 ans" alt="Responsive image">
</div>
</div>
<div class="accordion">
<div class="row accordion__question">
<img src="static/react.png" class="col col-md-2 img-fluid react-logo" alt="Responsive image">
<p class="col col-md-6 col-sm-8">Where is Taj Mahal located?</p><i class="col col-md-2 col-sm-2 offset-md-2 fas fa-angle-down"></i>
</div>
<div class="row accordion__answer">
<p class="col col-md-6 offset-sm-1 ">Taj Mahal is located in Agra, Uttar Pradesh.</p>
<img src="static/faq_vector.png" class="img-fluid col col-md-4 ans" alt="Responsive image">
</div>
</div>
<div class="accordion">
<div class="row accordion__question">
<img src="static/react.png" class="col col-md-2 img-fluid react-logo" alt="Responsive image">
<p class="col col-md-6 col-sm-8">Where is Taj Mahal located?</p><i class="col col-md-2 col-sm-2 offset-md-2 fas fa-angle-down"></i>
</div>
<div class="row accordion__answer">
<p class="col col-md-6 offset-sm-1 ">Taj Mahal is located in Agra, Uttar Pradesh.</p>
<img src="static/faq_vector.png" class="img-fluid col col-md-4 ans" alt="Responsive image">
</div>
</div>
</div>
</div>
</section>
<section id="newsletter">
<div class="container subscribe">
<div class="row newsletter">
<h2 class="col col-md-7 col-sm-12">Subscribe for newsletter</h2>
<a href="#" class="col col-md-4 offset-md-1 col-sm-12 ">Enter your Email Address</a>
</div>
</div>
</section>
<section id="footer">
<div class="container">
<div class="row">
<div class="col col-md-4 col-sm-12 logo">
<img src="static/logo_black.png" class="img-fluid" alt="Responsive image">
</div>
<div class="col col-md-4 col-sm-12">
<div class="title">
<h3>AAM Series</h3>
<p>Consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam</p>
<p>Consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem</p>
</div>
</div>
<div class="col col-md-4 col-sm-12 parinda">
<h3>SPECIAL THANKS</h3>
<p>Parinda Pranami - For Development</p>
<div class='social-links'>
<div class='social-btn flex-center' id="linkedin" style="padding: 1px;">
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="24" viewBox="0 0 24 24"><path d="M4.98 3.5c0 1.381-1.11 2.5-2.48 2.5s-2.48-1.119-2.48-2.5c0-1.38 1.11-2.5 2.48-2.5s2.48 1.12 2.48 2.5zm.02 4.5h-5v16h5v-16zm7.982 0h-4.968v16h4.969v-8.399c0-4.67 6.029-5.052 6.029 0v8.399h4.988v-10.131c0-7.88-8.922-7.593-11.018-3.714v-2.155z"/></svg><span>in/parindapranami</span>
</div>
<div class='social-btn flex-center' id="github" style="padding: 2px;" >
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="24" viewBox="0 0 24 24"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg><span>parindapranami</span>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="logo-mobile" style="text-align: center;">
<img src="static/logo_black.png">
</div>
<div class="credits">
<section id="lab_social_icon_footer" style="text-align: center;">
<div class="row text-center center-block">
<p>
<a href="https://www.facebook.com/bootsnipp"><i id="social-ig" class="fa fa-instagram fa-3x social"></i></a>
<a href="https://twitter.com/bootsnipp"><i id="social-ld" class="fa fa-linkedin-square fa-3x social"></i></a>
<a href="https://plus.google.com/+Bootsnipp-page"><i id="social-gb" class="fa fa-github-square fa-3x social"></i></a>
<a href="mailto:#"><i id="social-yt" class="fa fa-youtube-square fa-3x social"></i></a> </p>
</div>
</section>
<p style="margin-top: 5px;">© TheLeanProgrammer, 2021</p>
</div>
<div class="parinda-mobile">
<p>Developed by ~ Parinda Pranami</p>
</div>
<script src="index.js"></script>
</body>
</html>