-
Notifications
You must be signed in to change notification settings - Fork 0
/
ccourse.html
75 lines (66 loc) · 2.89 KB
/
ccourse.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>C Programming</title>
<link rel="stylesheet" href="cstyle.css">
<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="">LOGIN</a></li>
<li><a href="">SIGNUP</a></li> -->
<!-- <li><a href="">LOGOUT</a></li> -->
<li><a href="leaderboard.html">LEADERBOARD</a></li>
<li><a href="">PROFILE</a></li>
<li><a href="puzzle.html">PUZZLES</a></li>
</ul>
</div>
</nav>
</header>
<h1 class="c">Learn C</h1>
<section class="learning-path">
<div class="path-step" id="step1">
<h2><a href="chello.html">Step 1: Introduction to C Programming</a></h2>
<p>Learn the basics of C 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 C 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><a href="cprog.html">Step 3: I/O</a></h2>
<p>Learn input and output formatted functions in C 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 C.</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="capp.js"></script>
</body>
</html>