-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
511 lines (503 loc) · 20 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<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=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="/css/styles.css" />
<link rel="icon" href="./images/favicon.png" />
<title>Welcome To Tutor</title>
</head>
<body>
<nav class="navbar" role="navigation" aria-label="Main-Navigation">
<div class="navbar-flex container">
<a href="/" aria-label="Logo Home Link">
<img src="images/logo.svg" alt="Tutor Logo">
</a>
<div class="main-menu-items">
<ul class="main-menu-list">
<li>
<a href="/">Home</a>
</li>
<li>
<a href="#chapters">Chapters</a>
</li>
<li>
<a href="#summary">Summary</a>
</li>
<li>
<a href="#takeaways">Takeaways</a>
</li>
<li>
<a href="#author">Author</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
<li>
<a href="https://facebook.com" target="_blank"aria-label="Follow Us On Facebook">
<i class="fa-brands fa-facebook"></i>
</a>
</li>
<li>
<a href="https://twitter.com" target="_blank"aria-label="Follow Us On X">
<i class="fa-brands fa-twitter"></i>
</a>
</li>
</ul>
</div>
<!-- Mobile Menu -->
<div class="mobile-menu">
<!-- Hamburger button -->
<div class="mobile-menu-toggle" role="button" aria-expanded="false"
aria-controls="mobile-menu-items" aria-label="Open mobile menu" tabindex="0">
<i class="fas fa-bars fa-2x"></i>
</div>
<!-- Mobile Menu Items -->
<div id="mobile-menu-items" class="mobile-menu-items">
<ul class="mobile-menu-list">
<li>
<a href="/">Home</a>
</li>
<li>
<a href="#chapters">Chapters</a>
</li>
<li>
<a href="#summary">Summary</a>
</li>
<li>
<a href="#takeaways">Takeaways</a>
</li>
<li>
<a href="#author">Author</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
<li>
<a href="https://facebook.com" target="_blank"aria-label="Follow Us On Facebook">
<i class="fa-brands fa-facebook"></i>
</a>
</li>
<li>
<a href="https://twitter.com" target="_blank"aria-label="Follow Us On X">
<i class="fa-brands fa-twitter"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</nav>
<!-- Hero -->
<header class="hero">
<div class="container hero-flex">
<div class="hero-content">
<h1>Create Your Own Video Courses</h1>
<p>
Dive deep into the world of creativity and learn to craft
stunning videos that captivate your audience.
</p>
<a href="#" class="btn">$29 Get Course </a>
</div>
<img src="images/header-course.png" alt="hero">
</div>
<svg
class="frame-decoration"
data-name="Layer 2"
xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
viewBox="0 0 1920 192.275"
>
<defs>
<style>
.cls-1 {
fill: #ffffff;
}
</style>
</defs>
<title>frame-decoration</title>
<path
class="cls-1"
d="M0,158.755s63.9,52.163,179.472,50.736c121.494-1.5,185.839-49.738,305.984-49.733,109.21,0,181.491,51.733,300.537,50.233,123.941-1.562,225.214-50.126,390.43-50.374,123.821-.185,353.982,58.374,458.976,56.373,217.907-4.153,284.6-57.236,284.6-57.236V351.03H0V158.755Z"
transform="translate(0 -158.755)"
/>
</svg>
</header>
<!-- Learn Section -->
<section class="learn">
<div class="container">
<div class="section-header">
<h2>What will you learn?</h2>
<div class="heading-border"></div>
<p>Embark on a journey of learning with our comprehensive video courses.
Discover tyhe secrets of successfull video creation and enhance your skills.
</p>
</div>
<div class="topics">
<div class="topic">
<div class="topic-image">
<img src="images/description-1.jpg" alt="topic">
</div>
<div class="topic-text">
<h3>Set clear objectives</h3>
</div>
</div>
<div class="topic">
<div class="topic-image">
<img src="images/description-2.jpg" alt="topic">
</div>
<div class="topic-text">
<h3>Set clear objectives</h3>
</div>
</div>
<div class="topic">
<div class="topic-image">
<img src="images/description-3.jpg" alt="topic">
</div>
<div class="topic-text">
<h3>Set clear objectives</h3>
</div>
</div>
<div class="topic">
<div class="topic-image">
<img src="images/description-4.jpg" alt="topic">
</div>
<div class="topic-text">
<h3>Set clear objectives</h3>
</div>
</div>
<div class="topic">
<div class="topic-image">
<img src="images/description-5.jpg" alt="topic">
</div>
<div class="topic-text">
<h3>Set clear objectives</h3>
</div>
</div>
<div class="topic">
<div class="topic-image">
<img src="images/description-6.jpg" alt="topic">
</div>
<div class="topic-text">
<h3>Set clear objectives</h3>
</div>
</div>
<div class="topic">
<div class="topic-image">
<img src="images/description-7.jpg" alt="topic">
</div>
<div class="topic-text">
<h3>Set clear objectives</h3>
</div>
</div>
<div class="topic">
<div class="topic-image">
<img src="images/description-8.jpg" alt="topic">
</div>
<div class="topic-text">
<h3>Lunch Your Project Successfully Online</h3>
</div>
</div>
</div>
</div>
</section>
<!-- Course Chapter Section -->
<section class="chapters section" id="chapters">
<div class="container">
<div class="section-header">
<h2>Main Course Chapters</h2>
<div class="heading-border"></div>
<p>Explore the core concepts and techniques covered in our video course. Each chapter
is designed to equip you with esssential skills
for video creation</p>
</div>
<div class="chapter-cards">
<div class="card">
<img src="images/chapters-icon-1.svg" alt="chapter 1">
<h3>Setting Clear Objectives</h3>
<p></p>
</div>
<div class="card">
<img src="images/chapters-icon-2.svg" alt="chapter 1">
<h3>Content Creation Strategies</h3>
<p></p>
</div>
<div class="card">
<img src="images/chapters-icon-3.svg" alt="chapter 1">
<h3>Coding Essentials</h3>
<p></p>
</div>
</div>
</div>
</section>
<!-- Course Summary -->
<section class="summary" id="summary">
<div class="container">
<div class="section-header">
<h2>Course Summary</h2>
<div class="heading-border"></div>
</div>
<div class="section-lists">
<div class="list">
<div class="list-header">Setting Clear Objectivies</div>
<div class="list-item">
1.1 Learn to set clear and achievable objectives for your video projects,
ensuring aligment with yopur oveall goals.
</div>
<div class="list-item">
1.2 Learn to set clear and achievable objectives for your video projects,
ensuring aligment with yopur oveall goals.
</div>
<div class="list-item">
1.3 Learn to set clear and achievable objectives for your video projects,
ensuring aligment with yopur oveall goals.
</div>
</div>
<div class="list">
<div class="list-header">Setting Clear Objectivies</div>
<div class="list-item">
1.1 Learn to set clear and achievable objectives for your video projects,
ensuring aligment with yopur oveall goals.
</div>
<div class="list-item">
1.2 Learn to set clear and achievable objectives for your video projects,
ensuring aligment with yopur oveall goals.
</div>
<div class="list-item">
1.3 Learn to set clear and achievable objectives for your video projects,
ensuring aligment with yopur oveall goals.
</div>
</div>
</div>
</div>
</section>
<!-- Info -->
<sction class="info" id="info">
<div class="info-container">
<div class="info-left"></div>
<div class="info-content">
<h2>Who Is This Course For?</h2>
<p></p>
<ul>
<li><i class="fas fa check"></i>Web Designers</li>
<li><i class="fas fa check"></i>Web Developers</li>
<li><i class="fas fa check"></i>Marketing Professionals</li>
<li><i class="fas fa check"></i>Entrepreneurs</li>
<li><i class="fas fa check"></i>Buisness Owners</li>
</ul>
</div>
</div>
</sction>
<!-- Takeaways -->
<section class="takeaways section" id="takeaways">
<div class="container">
<div class="section-header">
<h2>Key Takeaways</h2>
<div class="heading-border"></div>
<p> This section highlights some of the key insights and learnings
you'll gain from the course. Take a look at what you can expect to
achieve:</p>
</div>
<div class="takeaways-cards">
<div class="card">
<i class="fas fa-rocket fa-3x text-primary"></i>
<p>
<strong>Enhanced Skills</strong> - Develop advanced skills in web
design & development
</p>
</div>
<div class="card">
<i class="fas fa-globe fa-3x text-primary"></i>
<p>
<strong>Global Perspective</strong> - Gain insights into industry
trends and best practices
</p>
</div>
<div class="card">
<i class="fas fa-cloud fa-3x text-primary"></i>
<p>
<strong>Cloud Technology</strong> - Explore the latest cloud
technologies and tools
</p>
</div>
<div class="card">
<i class="fas fa-user fa-3x text-primary"></i>
<p>
<strong>Networking </strong> - Connect with fellow professionals
and expand your network
</p>
</div>
<div class="card">
<i class="fas fa-cog fa-3x text-primary"></i>
<p>
<strong>Problem-Solving</strong> - Enhance your problem-solving
abilities and critical thinking skills
</p>
</div>
<div class="card">
<i class="fas fa-server fa-3x text-primary"></i>
<p>
<strong>Technical Proficiency</strong> - Improve your technical
proficiency and stay ahead in the digital landscape.
</p>
</div>
</div>
</div>
</section>
<!-- Course Deatils -->
<section class="details section" id="details">
<div class="container details-flex">
<img src="images/details.png" alt="deatils">
<div class="details-content">
<h2>Course details</h2>
<div class="heading-border"></div>
<p>
Gain insight into the course curriculum, structure, and what to expect
throughtout your learning journey.
</p>
<a href="#" class="btn">See Details</a>
</div>
</div>
</section>
<!-- Author Info -->
<section class="details section" id="author">
<div class="container details-flex">
<img src="images/author.png" alt="deatils">
<div class="details-content">
<h2>Author Information</h2>
<div class="heading-border"></div>
<p>
Learn about the author's background, expertise, and contribution to the
course content.
</p>
<ul>
<li>
<i class="fas fa-chevron-circle-right text-primary"></i>
<strong> Expertise: </strong> Lorem ipsum dolor sit amet
consectetur.
</li>
<li>
<i class="fas fa-chevron-circle-right text-primary"></i
><strong>Experience:</strong> Blandit turpis a est eget augue
ornare.
</li>
<li>
<i class="fas fa-chevron-circle-right text-primary"></i
><strong>Skills:</strong> Sed vulputate aliquet eget non velit.
</li>
</ul>
<a href="#" class="btn">See Details</a>
</div>
</div>
</section>
<!-- Stats -->
<section class="stats section" id="stats">
<div class="container stats-flex">
<img src="images/stats.png" alt="stats">
<div class="stats-content">
<div class="stats-numbers">
<div>
<h3 aria-labelledby="stats-happy-users">2000+</h3>
<p id="stats-happy-users">Happy Users</p>
</div>
<div>
<h3 aria-labelledby="stats-issues-solved">350</h3>
<p id="stats-issues-solved ">Issues Solved</p>
</div>
<div>
<h3 aria-labelledby="stats-good-reviews">900</h3>
<p id="stats-good-review">Good Reviews</p>
</div>
<div>
<h3 aria-labelledby="stats-case-studies">216</h3>
<p id="stats-case-studies">Case Studies</p>
</div>
</div>
<p class="stats-text">
Tutor is probably one of the best video courses on landing page
making in the web industry
</p>
<a href="#" class="btn">Get The Course</a>
</div>
</div>
</section>
<!-- Newsletter -->
<section class="newsletter section" id="newsletter">
<div class="container newsletter-flex">
<h2>Subscribe To Our Newsletter</h2>
<p>Stay updated with the latest news, offers, and insights from our
platform. Join our newsletter community today!
</p>
<form>
<input type="email" name="email" id="email"
placeholder="Enter your email">
<button type="submit" class="btn">Subscribe</button>
</form>
</div>
</section>
<!-- Social -->
<section class="social section">
<div class="container">
<p>Follow us on social media for updates and news about our courses</p>
<div class="social-icons">
<a
href="https://facebook.com"
target="_blank"
aria-label="Follow Us On Facebook"
>
<i class="fa-brands fa-facebook fa-2x"></i>
</a>
<a
href="https://twitter.com"
target="_blank"
aria-label="Follow Us On Twitter"
>
<i class="fa-brands fa-twitter fa-2x"></i>
</a>
<a
href="https://instagram.com"
target="_blank"
aria-label="Follow Us On Instagram"
><i class="fa-brands fa-instagram fa-2x"></i>
</a>
<a
href="https://linkdin.com"
target="_blank"
aria-label="Follow Us On Linkdin"
><i class="fa-brands fa-linkedin fa-2x"></i>
</a>
<a
href="https://youtube.com"
target="_blank"
aria-label="Follow Us On Youtube"
>
<i class="fa-brands fa-youtube fa-2x"></i>
</a>
<a
href="https://pinterest.com"
target="_blank"
aria-label="Follow Us On Pinterest"
>
<i class="fa-brands fa-pinterest fa-2x"></i>
</a>
</div>
</div>
</section>
<footer class="footer">
<div class="container footer-flex">
<ul class="footer-links">
<li><a href="#">Home</a></li>
<li><a href="#">Terms</a></li>
<li><a href="#">Privacy</a></li>
<li><a href="contact.html">Conatact</a></li>
</ul>
<p>© 2024 - 2025 Tutor. All rights reserved</p>
</div>
</footer>
<script src="js/script.js"></script>
</body>
</html>