-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice.html
More file actions
82 lines (78 loc) · 2.97 KB
/
practice.html
File metadata and controls
82 lines (78 loc) · 2.97 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Practice Hub - 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" class="active">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="practice-header">
<h1><i class="fas fa-laptop-code"></i> Practice Hub</h1>
<p>Hands-on practice with real platforms - Learn by doing!</p>
</div>
<div class="practice-stats">
<div class="stat-card">
<i class="fas fa-fire"></i>
<div class="stat-info">
<span class="stat-number" id="practiceStreak">0</span>
<span class="stat-label">Practice Streak</span>
</div>
</div>
<div class="stat-card">
<i class="fas fa-trophy"></i>
<div class="stat-info">
<span class="stat-number" id="practicePoints">0</span>
<span class="stat-label">Practice Points</span>
</div>
</div>
<div class="stat-card">
<i class="fas fa-tasks"></i>
<div class="stat-info">
<span class="stat-number" id="completedExercises">0</span>
<span class="stat-label">Exercises Done</span>
</div>
</div>
</div>
<div class="practice-courses" id="practiceCoursesGrid">
<!-- Course cards will be loaded here -->
</div>
</main>
<script src="assets/js/progress-tracker.js"></script>
<script src="assets/js/practice.js"></script>
</body>
</html>