-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
649 lines (635 loc) · 24.7 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
<!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 rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/font-awesome.css" />
<link rel="stylesheet" href="css/bootstrap.css" />
<link rel="stylesheet" href="css/styles.css" />
<link rel="icon" href="images/favicon.png" />
<title>Corso Training</title>
</head>
<body>
<!-- NAVIGATION -->
<nav class="navbar navbar-expand-lg fixed-top navbar-dark">
<div class="container">
<a href="index.html" class="navbar-brand">
<img src="images/logo.png" width="150" alt="Corso Logo" />
</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNavDropdown"
aria-controls="navbarNavDropdown"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a href="#home" class="nav-link" aria-current="page">Home</a>
</li>
<li class="nav-item">
<a href="#discover" class="nav-link">Discover</a>
</li>
<li class="nav-item">
<a href="#summary" class="nav-link">Summary</a>
</li>
<li class="nav-item">
<a href="#takeaways" class="nav-link">Takeaways</a>
</li>
<li class="nav-item">
<a href="#subscribe" class="nav-link">Subscribe</a>
</li>
</ul>
<span class="nav-item">
<span class="fa-stack">
<a href="#">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-facebook-f fa-stack-1x text-white"></i>
</a>
</span>
</span>
<span class="nav-item">
<span class="fa-stack">
<a href="#">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-twitter fa-stack-1x text-white"></i>
</a>
</span>
</span>
</div>
</div>
</nav>
<!-- HEADER -->
<header class="header py-7 vh-100">
<div class="container">
<div class="row mb-5 text-center">
<div class="col-12 text-container">
<h1 class="display-2 text-white mt-3">
Explore Our Training and Seminar Videos
</h1>
<p class="lead text-white w-75 m-auto mb-4">
Whether you're a beginner or an experienced professional, our
carefully curated content will empower you to enhance your skills
and expand your knowledge
</p>
<a href="#register" class="btn btn-primary text-uppercase">
Register
</a>
<a href="#discover" class="btn btn-outline-light text-uppercase">
Discover
</a>
</div>
</div>
<div class="row">
<div class="col-12">
<!-- IMAGE SLIDER-->
<div id="slider" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-indicators">
<button
class="active"
type="button"
data-bs-slide-to="0"
data-bs-target="#slider"
aria-current="true"
aria-label="Slide 1"
></button>
<button
type="button"
data-bs-slide-to="1"
data-bs-target="#slider"
aria-label="Slide 2"
></button>
<button
type="button"
data-bs-slide-to="2"
data-bs-target="#slider"
aria-label="Slide 3"
></button>
</div>
<div class="carousel-inner rounded-5">
<div class="carousel-item active">
<img
src="images/header-slide-1.jpg"
alt="corso classroom"
class="d-block w-100 rounded-5"
/>
</div>
<div class="carousel-item">
<img
src="images/header-slide-2.jpg"
alt="corso classroom students"
class="d-block w-100 rounded-5"
/>
</div>
<div class="carousel-item">
<img
src="images/header-slide-3.jpg"
alt="corso classroom discussion"
class="d-block w-100 rounded-5"
/>
</div>
</div>
<!-- SLIDER BUTTONS-->
<button
class="carousel-control-prev"
type="button"
data-bs-slide="prev"
data-bs-target="#slider"
>
<span class="carousel-control-prev-icon"></span>
<span class="visually-hidden">Previous</span>
</button>
<button
class="carousel-control-next"
type="button"
data-bs-slide="next"
data-bs-target="#slider"
>
<span class="carousel-control-next-icon"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</div>
</div>
</header>
<!-- REGISTER -->
<section class="register bg-primary py-6 overflow-hidden">
<div class="container">
<div class="row">
<div class="col-lg-6">
<h2>Unlock Your Potential with Engaging Content</h2>
<p>
Our wide range of training and seminar videos are designed to
empower you with valuable knowledge and skills.
</p>
<ul class="list-unstyled vstack gap-3">
<li>
<i class="fas fa-square"></i>
<strong>Gain Expertise:</strong> Our videos provide in-depth
insights and practical tips to enhance your expertise in various
domains.
</li>
<li>
<i class="fas fa-square"></i>
<strong>Stay Updated:</strong> Stay up-to-date with the latest
industry trends and advancements through our informative and
up-to-date videos.
</li>
<li>
<i class="fas fa-square"></i>
<strong>Expand Your Network:</strong> Connect with like-minded
individuals and industry experts, fostering new connections and
opportunities.
</li>
</ul>
</div>
<div class="col-lg-6 p-4">
<form>
<div class="my-4">
<input
type="text"
class="form-control form-control-lg rounded-3 border-0"
placeholder="Enter Name"
/>
</div>
<div class="my-4">
<input
type="email"
class="form-control form-control-lg rounded-3 border-0"
placeholder="Enter Email"
/>
</div>
<div class="my-4">
<input
type="text"
class="form-control form-control-lg rounded-3 border-0"
placeholder="Enter Phone Number"
/>
</div>
<div class="form-check">
<input type="checkbox" class="form-check-input" value="" />
<label for="terms" class="form-check-label">
I agree to the terms and conditions
</label>
</div>
<div class="d-grid mt-4">
<button class="btn btn-outline-dark">Register</button>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- DETAILS-1 -->
<section id="discover" class="details py-6 bg-light">
<div class="container">
<div class="row">
<div class="col-lg-6">
<img
src="images/instructor.jpg"
alt="our instructor"
class="img-fluid rounded-5 mb-4"
/>
</div>
<div class="col-lg-6 d-flex flex-column justify-content-center">
<h2>Enhance Your Skills with Engaging Training Videos</h2>
<p>
Our extensive collection of training videos is designed to help
you enhance your skills and excel in your chosen field. Whether
you're looking to improve your technical expertise or develop
essential soft skills, our videos provide valuable insights and
practical knowledge.
</p>
<p>
With expert instructors and comprehensive content, you'll gain the
confidence and competence to tackle challenges and achieve
success.
</p>
</div>
</div>
</div>
</section>
<!-- POINTS -->
<section class="points pb-5">
<div class="container">
<div class="row text-center mb-5">
<div class="col-md-8 offset-md-2">
<h2>Unlock Your Potential with Engaging Training Videos</h2>
</div>
</div>
<div class="row">
<div class="col-md-6 mb-4">
<div class="d-flex gap-3">
<div class="number">
<span class="bg-primary py-2 px-4 fs-3 rounded-circle">1</span>
</div>
<div>
<h3 class="fs-4">Enhance Your Skills</h3>
<p>
Our training videos provide comprehensive insights and
practical tips to help you enhance your skills in various
domains. From technical expertise to soft skills, we've got
you covered.
</p>
</div>
</div>
</div>
<div class="col-md-6 mb-4">
<div class="d-flex gap-3">
<div class="number">
<span class="bg-primary py-2 px-4 fs-3 rounded-circle">2</span>
</div>
<div>
<h3 class="fs-4">Stay Updated</h3>
<p>
Keep pace with the latest industry trends and advancements
through our informative and up-to-date videos. Stay ahead of
the curve and broaden your knowledge.
</p>
</div>
</div>
</div>
<div class="col-md-6 mb-4">
<div class="d-flex gap-3">
<div class="number">
<span class="bg-primary py-2 px-4 fs-3 rounded-circle">3</span>
</div>
<div>
<h3 class="fs-4">Connect with Experts</h3>
<p>
Our platform allows you to connect with like-minded
individuals and industry experts. Expand your network, foster
new connections, and unlock new opportunities.
</p>
</div>
</div>
</div>
<div class="col-md-6 mb-4">
<div class="d-flex gap-3">
<div class="number">
<span class="bg-primary py-2 px-4 fs-3 rounded-circle">4</span>
</div>
<div>
<h3 class="fs-4">Flexible Learning</h3>
<p>
Our training videos are available on-demand, allowing you to
learn at your own pace and convenience. Access the content
anytime, anywhere, and tailor your learning experience.
</p>
</div>
</div>
</div>
<div class="col-md-6 mb-4">
<div class="d-flex gap-3">
<div class="number">
<span class="bg-primary py-2 px-4 fs-3 rounded-circle">5</span>
</div>
<div>
<h3 class="fs-4">Practical Knowledge</h3>
<p>
Gain practical knowledge and apply it directly to real-world
scenarios. Our videos offer hands-on insights and practical
tips to help you succeed in your professional endeavors.
</p>
</div>
</div>
</div>
<div class="col-md-6 mb-4">
<div class="d-flex gap-3">
<div class="number">
<span class="bg-primary py-2 px-4 fs-3 rounded-circle">6</span>
</div>
<div>
<h3 class="fs-4">Continuous Learning</h3>
<p>
Lifelong learning is key to personal and professional growth.
Explore a vast collection of training videos and embark on a
journey of continuous learning and self-improvement.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Course Summary -->
<section id="summary" class="summary bg-light mt-5 w-75 m-auto">
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="text-center mb-5">Course Summary</h2>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="bg-white p-5">
<ul class="list-unstyled">
<li class="border-bottom pb-3">
<h5>1. Comprehensive Training</h5>
<p>
Our courses provide comprehensive training in a wide range
of topics. From beginner-level fundamentals to advanced
concepts, we offer in-depth content to cater to learners of
all levels.
</p>
</li>
<li class="border-bottom pb-3 pt-5">
<h5>2. Expert Instructors</h5>
<p>
Learn from industry experts who bring years of experience
and expertise to the table. Our instructors are passionate
about sharing their knowledge and helping you succeed.
</p>
</li>
<li class="pb-1 pt-5">
<h5>3. Practical Applications</h5>
<p>
We believe in practical learning that goes beyond theory.
Our courses focus on real-world application, equipping you
with the skills and knowledge needed to excel in your field.
</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Details-2 -->
<section class="details py-6 bg-light">
<div class="container">
<div class="row">
<div class="col-lg-6">
<img
src="images/audience.jpg"
alt="classroom interaction"
class="img-fluid rounded-5 mb-4"
/>
</div>
<div class="col-lg-6 d-flex flex-column justify-content-center">
<h2>Elevate Your Learning Journey with Expert Seminars</h2>
<p>
Join our expert-led seminars and unlock new possibilities in your
personal and professional development. Our seminars cover a
diverse range of topics, from leadership and innovation to
personal growth and productivity.
</p>
<p>
Immerse yourself in engaging discussions, interactive workshops,
and valuable networking opportunities.
</p>
</div>
</div>
</div>
</section>
<!-- Invitation -->
<section class="invitation mb-5 bg-light">
<div class="container">
<div class="row">
<div class="col-12">
<div class="invitation-bg text-center py-6 rounded-5">
<div class="text-white w-75 m-auto">
<h2 class="display-5 fw-bold">Join Us On December 22nd</h2>
<p>
We cordially invite you to attend a seminar on December 22nd,
where we will explore various topics and insights related to
<strong>advertising and marketing</strong>. It will be an
engaging session where you can gain valuable knowledge about.
Don't miss out on this opportunity to enhance your skills and
broaden your horizons. Join us and be a part of this enriching
experience!
</p>
<a href="#register" class="btn btn-primary btn-lg">
Register Now
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Takeaways -->
<section id="takeaways" class="takeaways my-5 bg-light">
<div class="container">
<div class="row textcenter mb-md-2">
<div class="col-md-8 offset-md-2">
<h2>Key Takeaways</h2>
<p class="lead">
Here are some of the takeaways and benefits you can expect from
our programs.
</p>
</div>
</div>
<!-- ROW 1 -->
<div class="row">
<div class="col-md-4">
<div class="card mb-4 rounded-0 border-0 p-3 h-100">
<div class="card-body bg-white text-center">
<i
class="fas fa-atom fa-3x text-primary bg-light rounded-circle p-3 my-4"
></i>
<h5 class="card-title">Scientific Insights</h5>
<p class="card-text">
Explore the latest scientific research and gain valuable
insights into various subjects, from physics to biology.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card mb-4 rounded-0 border-0 p-3 h-100">
<div class="card-body bg-white text-center">
<i
class="fas fa-key fa-3x text-primary bg-light rounded-circle p-3 my-4"
></i>
<h5 class="card-title">Cybersecurity Awareness</h5>
<p class="card-text">
Discover the importance of cybersecurity and learn how to
protect yourself and your digital assets from cyber threats.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card mb-4 rounded-0 border-0 p-3 h-100">
<div class="card-body bg-white text-center">
<i
class="fas fa-newspaper fa-3x text-primary bg-light rounded-circle p-3 my-4"
></i>
<h5 class="card-title">Industry Updates</h5>
<p class="card-text">
Stay informed about the latest news and updates in your
industry, keeping you ahead of the curve and facilitating
professional growth.
</p>
</div>
</div>
</div>
<!-- Second Row -->
<div class="col-md-4">
<div class="card mb-4 rounded-0 border-0 p-3 h-100">
<div class="card-body bg-white text-center">
<i
class="fas fa-users fa-3x text-primary bg-light rounded-circle p-3 my-4"
></i>
<h5 class="card-title">Collaborative Networking</h5>
<p class="card-text">
Connect with professionals from diverse backgrounds and
industries to foster collaboration and expand your
professional network.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card mb-4 rounded-0 border-0 p-3 h-100">
<div class="card-body bg-white text-center">
<i
class="fas fa-handshake fa-3x text-primary bg-light rounded-circle p-3 my-4"
></i>
<h5 class="card-title">Partnership Opportunities</h5>
<p class="card-text">
Discover potential partnership opportunities with like-minded
individuals and organizations, opening doors to new
collaborations and ventures.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card mb-4 rounded-0 border-0 p-3 h-100">
<div class="card-body bg-white text-center">
<i
class="fas fa-chart-bar fa-3x text-primary bg-light rounded-circle p-3 my-4"
></i>
<h5 class="card-title">Data-driven Insights</h5>
<p class="card-text">
Leverage data analytics to gain valuable insights and make
informed decisions, unlocking new possibilities for growth and
success.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Subscribe Form -->
<section id="subscribe" class="subscribe my-5">
<div class="container">
<div class="row">
<div class="col-md-6 offset-md-3 text-center">
<h2>
Subscribe to our email list and get updates from the experts
</h2>
<form>
<div class="my-4">
<input
type="email"
class="form-control form-control-lg"
placeholder="Enter Email"
/>
<div class="form-text">
We will never share your email address
</div>
</div>
<div class="d-grid">
<button class="btn btn-primary">Subscribe</button>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- FOOTER -->
<footer class="footer mt-4 text-bg-dark py-5">
<div class="container">
<div class="row">
<div class="col-md-4">
<h5>Lorem Ipsum</h5>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Eos
possimus aliquid omnis commodi. Dignissimos, quam obcaecati? Fugit
non ex repellendus?
</p>
</div>
<div class="col-md-4">
<h3>Quick Links</h3>
<ul class="list-unstyled">
<li><a href="#home">Home</a></li>
<li><a href="#discover">Discover</a></li>
<li><a href="#summary">Summary</a></li>
<li><a href="#takeaways">Takeaways</a></li>
<li><a href="#subscribe">Subscribe</a></li>
</ul>
</div>
<div class="col-md-4">
<h5>Connect</h5>
<div class="d-flex gap-3">
<a href="#"><i class="fab fa-facebook fa-3x text-white"></i></a>
<a href="#"><i class="fab fa-twitter fa-3x text-white"></i></a>
<a href="#"><i class="fab fa-linkedin fa-3x text-white"></i></a>
<a href="#"><i class="fab fa-instagram fa-3x text-white"></i></a>
<a href="#"><i class="fab fa-youtube fa-3x text-white"></i></a>
</div>
</div>
</div>
</div>
</footer>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>