-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (68 loc) · 4.06 KB
/
index.html
File metadata and controls
78 lines (68 loc) · 4.06 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="./style.css"></head>
<script
src="https://code.jquery.com/jquery-3.4.1.js"
integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU="
crossorigin="anonymous"></script>
<body>
<header>
<h2>Become a Java Web Developer</h2>
<p>Your web development journey starts here.</p>
<button id="enroll-button">Enroll Now</button>
</header>
<section>
<div class="content-wrapper">
<div class="course-content">
<div class="course-features">
<h2><i class="fas fa-chalkboard-teacher"></i> Instructor-Led Training</h2>
<p>Learn from <a href="https://git-leon.github.io/Leon-Hunter-Public-Portfolio/">Leon Hunter</a>, a Senior Software Engineer with years of industry and teaching experience. Get personal access to the instructor to solve assignments and participate in local job fair events.</p>
</div>
<div class="course-features">
<h2><i class="fas fa-clock"></i> Self-Paced Learning</h2>
<p>No more worrying about schedule conflicts. This course is entirely self-paced, allowing you to learn at your own speed.</p>
</div>
<div class="course-features">
<h2><i class="fas fa-users"></i> Community and Support</h2>
<p>Join an ecosystem of learners just like you. Benefit from resume assistance, mock job interviews, and real-world advice from experienced software engineers.</p>
</div>
<div class="course-features">
<h2><i class="fas fa-project-diagram"></i> Practical Skills You Will Master</h2>
<p>Click the button below to reveal the full list of skills you will acquire during this course:</p>
<p class="reveal-button">Show Skill Set</p>
<ul class="skills-list">
<li class="highlight"><strong>Operating System Package Management</strong></li>
<li class="highlight"><strong>Command Line Scripting</strong></li>
<li class="highlight"><strong>Version Control Software</strong></li>
<li class="highlight"><strong>Markdown / Documentation</strong></li>
<li class="highlight"><strong>Editors / Integrated Development Environments</strong></li>
<li class="highlight"><strong>HTML / CSS / JavaScript</strong></li>
<li class="highlight"><strong>Java Web Development</strong></li>
<li class="highlight"><strong>Database Management Systems</strong></li>
<li class="highlight"><strong>Continuous Integration / Continuous Deployment</strong></li>
<li class="highlight"><strong>Containerization</strong></li>
<li class="highlight"><strong>Cloud Computing / Web Server Deployment</strong></li>
</ul>
</div>
<div class="course-features">
<h2><i class="fas fa-trophy"></i> Course Completion Benefits</h2>
<p>By the end of this course, you will have deployed several full-stack applications using the technologies and skills learned. Upon completing each module, you will receive certificates that prove your proficiency.</p>
</div>
</div>
</div>
</section>
<footer>
<!-- Sellfy's button is ugly asf, so we hide it, create our button, then redirect our button's click to this ugly mf here-->
<div style="display:none">
<a href="https://curriculeon.sellfy.store/p/java-enrollment/" data-text="" id="ezuz1x" class="sellfy-buy-button"></a>
</div>
<p>© 2025 Curriculeon Full Stack Web Developer Course. All rights reserved.</p>
<script src="https://sellfy.com/js/api_buttons.js"></script>
<script src="./service.js"></script>
</footer>
</body>
</html>