-
Notifications
You must be signed in to change notification settings - Fork 0
/
py.html
81 lines (71 loc) · 3.33 KB
/
py.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Python Programming</title>
<link rel="stylesheet" href="pystyle.css">
<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=IBM+Plex+Mono&display=swap" rel="stylesheet">
<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=IBM+Plex+Mono&family=Source+Code+Pro:wght@600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
</head>
<body>
<header class="head">
<nav>
<div class="nav-links" id="navLinks">
<i class="fa fa-times" onclick="hidemenu()"></i>
<ul>
<li><a href="home2.html">HOME</a></li>
<!-- <li><a href="about.html">ABOUT</a></li> -->
<li><a href="comm.html">COMMUNITY</a></li>
<li><a href="puzzle.html">PUZZLES</a></li>
<li><a href="courseoff.html">COURSES OFFERED</a></li>
<li><a href="leaderboard.html">LEADERBOARD</a></li>
<!-- <li><a href="">LOGIN</a></li>
<li><a href="">SIGNUP</a></li> -->
<!-- <li><a href="">LOGOUT</a></li> -->
<li><a href="profile.html">PROFILE</a></li>
</ul>
</div>
</nav>
</header>
<h1 class="c">Learn Python</h1>
<section class="learning-path">
<div class="path-step" id="step1">
<h2>Step 1: Introduction to Python Programming</h2>
<p>Learn the basics of python programming language, its history, and its significance.</p>
<br><br>
<button class="next-step" onclick="goToStep(2)">Next Step</button>
</div>
<div class="path-step" id="step2">
<h2>Step 2: Setting Up Your Development Environment</h2>
<p>Configure and set up the tools needed for Python programming, including IDEs and compilers.</p>
<br><br>
<button class="prev-step" onclick="goToStep(1)">Previous Step</button>
<button class="next-step" onclick="goToStep(3)">Next Step</button>
</div>
<div class="path-step" id="step3">
<h2>Step 3: I/O</h2>
<p>Learn input and output functions in Python programming.</p>
<br><br>
<button class="prev-step" onclick="goToStep(2)">Previous Step</button>
<button class="next-step" onclick="goToStep(4)">Next Step</button>
</div>
<div class="path-step" id="step4">
<h2>Step 4: Variables and Data Types</h2>
<p>Understand how to declare variables and work with different data types in Python.</p>
<br><br>
<button class="prev-step" onclick="goToStep(3)">Previous Step</button>
<!-- Add more steps as needed -->
</div>
</section>
<footer>
<p>© 2023 Your LMS. All rights reserved.</p>
</footer>
<script src="pyapp.js"></script>
</body>
</html>