-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpython-course.html
137 lines (129 loc) · 5.61 KB
/
python-course.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Python for Beginners - ITVersity</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<header>
<nav>
<div class="logo">ITVersity</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="index.html#services">Services</a></li>
<li><a href="index.html#courses">Courses</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</nav>
</header>
<section class="course-hero">
<div class="hero-content">
<h1>Python for Beginners</h1>
<p>Master the fundamentals of Python programming and start your coding journey</p>
</div>
</section>
<section class="course-details">
<div class="container">
<div class="course-overview">
<h2>Course Overview</h2>
<p>This comprehensive course is designed for absolute beginners who want to learn Python programming from scratch. You'll learn essential programming concepts, best practices, and hands-on coding skills.</p>
</div>
<div class="course-highlights">
<h2>What You'll Learn</h2>
<ul class="features-list">
<li><i class="fas fa-check"></i> Python syntax and fundamentals</li>
<li><i class="fas fa-check"></i> Variables, data types, and operators</li>
<li><i class="fas fa-check"></i> Control structures and loops</li>
<li><i class="fas fa-check"></i> Functions and modules</li>
<li><i class="fas fa-check"></i> Object-oriented programming basics</li>
<li><i class="fas fa-check"></i> File handling and basic I/O</li>
<li><i class="fas fa-check"></i> Error handling and debugging</li>
<li><i class="fas fa-check"></i> Basic data structures and algorithms</li>
</ul>
</div>
<div class="course-structure">
<h2>Course Structure</h2>
<div class="timeline">
<div class="timeline-item">
<h3>Week 1-2</h3>
<p>Python Basics and Environment Setup</p>
</div>
<div class="timeline-item">
<h3>Week 3-4</h3>
<p>Control Structures and Functions</p>
</div>
<div class="timeline-item">
<h3>Week 5-6</h3>
<p>Object-Oriented Programming</p>
</div>
<div class="timeline-item">
<h3>Week 7-8</h3>
<p>Projects and Advanced Concepts</p>
</div>
</div>
</div>
<div class="course-features">
<h2>Course Features</h2>
<div class="features-grid">
<div class="feature-card">
<i class="fas fa-video"></i>
<h3>40+ Hours of Video</h3>
<p>Comprehensive video lessons</p>
</div>
<div class="feature-card">
<i class="fas fa-laptop-code"></i>
<h3>Hands-on Projects</h3>
<p>Real-world coding projects</p>
</div>
<div class="feature-card">
<i class="fas fa-certificate"></i>
<h3>Certificate</h3>
<p>Course completion certificate</p>
</div>
<div class="feature-card">
<i class="fas fa-headset"></i>
<h3>24/7 Support</h3>
<p>Dedicated mentor support</p>
</div>
</div>
</div>
<div class="enrollment-cta">
<h2>Ready to Start Your Python Journey?</h2>
<p>Enroll now and take the first step towards becoming a Python developer</p>
<a href="index.html#contact" class="cta-button">Enroll Now</a>
</div>
</div>
</section>
<footer>
<div class="footer-content">
<div class="footer-section">
<h3>ITVersity, Inc</h3>
<p>Empowering careers through education</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="index.html#courses">Courses</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Connect With Us</h3>
<div class="social-links">
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-facebook"></i></a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 ITVersity, Inc. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>