-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcourseoff.html
59 lines (49 loc) · 1.98 KB
/
courseoff.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Courses</title>
<link rel="stylesheet" href="coursesstyle.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="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">Courses Offered</h1>
<section class="courses-container">
<a href="ccourse.html" class="course-box" id="c-course">
<h2>C Programming</h2>
<p>Learn the fundamentals of C programming language.</p>
</a>
<a href="cpp.html" class="course-box" id="cpp-course">
<h2>C++ Programming</h2>
<p>Explore the features and concepts of C++ programming.</p>
</a>
<a href="py.html" class="course-box" id="python-course">
<h2>Python Programming</h2>
<p>Discover the versatility of Python programming language.</p>
</a>
</section>
<footer>
<p>© 2023 Your LMS. All rights reserved.</p>
</footer>
</body>
</html>