-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
122 lines (112 loc) · 5.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Morfidon - Video Course Creator</title>
<link rel="stylesheet" href="css/style.css">
<script src="js/main.js"></script>
</head>
<body>
<div id="nav-placeholder"></div>
<main>
<section id="hero">
<h1>Welcome to Morfidon's Learning Hub</h1>
<p>Empowering learners through engaging video courses</p>
<a href="#featured-courses" class="cta-button">Explore Courses</a>
</section>
<section id="featured-courses">
<h2>Featured Courses</h2>
<div class="course-grid">
<div class="course-card" tabindex="0">
<div class="course-content">
<h3>C++: From Beginner to Expert</h3>
<p>Designed for people who don't have any knowledge about the programming and want to program in C++. Become a C++ expert even if you are a beginner.</p>
</div>
<a href="https://www.udemy.com/course/video-course-c-from-beginner-to-expert/?referralCode=F835B8AEE9C81FFE5BE5" class="course-link">Learn More</a>
</div>
<div class="course-card" tabindex="0">
<div class="course-content">
<h3>JavaScript from Beginner to Expert</h3>
<p>Become a JavaScript expert in 30 days, even if you are a JS beginner. Become a front-end developer of websites in JS</p>
</div>
<a href="https://www.udemy.com/course/javascript-from-beginner-to-expert-bring-life-to-your-site/?referralCode=631D070753541D58F328" class="course-link">Learn More</a>
</div>
</div>
</section>
<section id="platforms">
<h2>Find My Courses On</h2>
<div class="platform-links">
<a href="https://www.udemy.com/user/arkadiuszwodarczyk/" target="_blank" rel="noopener noreferrer">Udemy</a>
<a href="https://www.skillshare.com/en/r/user/morfidon" target="_blank" rel="noopener noreferrer">Skillshare</a>
<a href="https://www.youtube.com/@GameDevForNoobs" target="_blank" rel="noopener noreferrer">YouTube</a>
</div>
</section>
<section id="testimonials">
<h2>What Students Say</h2>
<!-- Add testimonials here -->
<blockquote>
The course was a great match! As a novice in programming, I enjoyed
ił and found ił easier to uderstand. To be more specific, the
theoretical aspects followed by practical examples, made this lesson
to permeate into my memory and made me uderstand much more
easier.
</blockquote>
<blockquote>
Arkadiusz have good teaching skills. He's focused on the important parts and have a great tips. I
watched some other tutorials but non had this level of explaining to the details of core of the JS
language. Keep up the good work!
</blockquote>
<blockquote>
The courses is well structured starting from basic to advanced. The
course gets bełter and bełter, much interesting once you move
forward. Last few topics has good helping tips for the developer. The
course author is very helpful and respond to the queries
instantaneously.
</blockquote>
<blockquote>
I guess is the only course ľve completed from Udemy :).
The teacher is not good, is extremely good.
After you've completed the training, you don't become an expert in
c++, you become a Guru in c++.
You will learn all the fundamentals in computer programming, you
will play with pointers and references like your second nature, you
will understand finally What the streams are, you will understand
why you do a certain thing, why you do ił and when you do ił.
All the lessons are built on each othert I really advise people to stop
the video, try your solution and play ił again.
If you really feel, you want to dedicate a month or two, or even more,
and I talk from my experience, after you've done with this course,
you can learn any other programming language on the market, in no
more than 2 hours, and thaťs because, all the other programming
languages that exist, have at their core, the C++ knowledge.
Once you know the basis, you can jump on any framework, unreal
engine, unity, react, angular, you name them, and truły understand
them without opening any book.
The only challenge that we can face in order to build anything, will be
our own practice. And when i say practice, i say: "You google What
you want to do, find the library and the functions, and implement
that, in no time”
This couse is like a diamond, in a vast pool of information, and
whoever found ił, probably, he was a seeker like me.
Thanks again for this amazing teaching, and i wish you many
blessings ^^
</blockquote>
<blockquote>
The instructor shows sincere interest in students in Q&A section.
The exercises added to each lecture made this course whole. They
allowed me to strengthen the newly gained knowledge.
To sum up using the course I learnt rapidly C++ fundamentals.
I recommend C++ from beginner to expert 100%.
</blockquote>
</section>
<section id="cta">
<h2>Ready to Start Learning?</h2>
<p>Explore my courses and take your skills to the next level!</p>
<a href="https://www.udemy.com/user/arkadiuszwodarczyk/" class="cta-button">View All Courses</a>
</section>
</main>
<div id="footer-placeholder"></div>
<script src="js/include-common-elements.js"></script>
</body>
</html>