-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice-course.html
More file actions
64 lines (60 loc) · 2.24 KB
/
practice-course.html
File metadata and controls
64 lines (60 loc) · 2.24 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Practice Lessons - NeuroDev</title>
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="assets/css/practice.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<!-- Adsterra Ad -->
<script type="text/javascript">
atOptions = {
'key' : 'be69b107f7831475d95313164073e15e',
'format' : 'iframe',
'height' : 250,
'width' : 300,
'params' : {}
};
</script>
<script type="text/javascript" src="//www.highperformanceformat.com/be69b107f7831475d95313164073e15e/invoke.js"></script>
</head>
<body>
<nav class="navbar">
<div class="nav-container">
<div class="nav-brand">
<i class="fas fa-brain"></i>
<span>NeuroDev</span>
</div>
<ul class="nav-menu">
<li><a href="index.html">Dashboard</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="practice.html">Practice</a></li>
<li><a href="videos.html">Videos</a></li>
<li><a href="dictionary.html">Dictionary</a></li>
</ul>
<div class="nav-user">
<div class="user-icon" onclick="window.location.href='profile.html'">
<i class="fas fa-user"></i>
</div>
</div>
</div>
</nav>
<main class="main-content">
<div class="breadcrumb">
<a href="practice.html">Practice Hub</a>
<i class="fas fa-chevron-right"></i>
<span id="courseBreadcrumb">Course Practice</span>
</div>
<div class="practice-course-header">
<h1 id="courseTitle">Loading Course...</h1>
<p id="courseDescription">Select lessons to practice hands-on exercises</p>
</div>
<div class="practice-lessons" id="practiceLessonsGrid">
<!-- Lesson cards will be loaded here -->
</div>
</main>
<script src="assets/js/progress-tracker.js"></script>
<script src="assets/js/practice-course.js"></script>
</body>
</html>