-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython.html
More file actions
41 lines (41 loc) · 1.32 KB
/
python.html
File metadata and controls
41 lines (41 loc) · 1.32 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
<!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 - Learnify Hub</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<nav class="navbar">
<div class="logo">Learnify<span>Hub</span></div>
<ul class="nav-links">
<li><a href="index.html#hero">Home</a></li>
<li><a href="index.html#courses">Courses</a></li>
<li><a href="index.html#about">About</a></li>
</ul>
</nav>
</header>
<main class="course-detail-main">
<h1>Python for Beginners</h1>
<img src="https://img.icons8.com/fluency/96/python.png" alt="Python" />
<p>
Start coding with Python! This course covers the basics and gets you writing real code with fun exercises.
</p>
<h3>What you'll learn:</h3>
<ul>
<li>Python syntax</li>
<li>Variables & data types</li>
<li>Loops & conditions</li>
<li>Mini projects</li>
</ul>
<a href="index.html#courses" class="cta-btn">Back to Courses</a>
</main>
<footer>
<div class="footer-container">
<p>© 2025 Learnify Hub | <a href="index.html#about">About</a> | <a href="index.html#hero">Home</a></p>
</div>
</footer>
</body>
</html>