-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboardstudent.html
71 lines (71 loc) · 2.91 KB
/
dashboardstudent.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dashboard</title>
<link rel="stylesheet" href="dashboard.css">
<script type="text/javascript" src="jquery-3.7.1.min.js"></script>
</head>
<script type="text/javascript">
$(document).ready(function() {
$("#logo").hide();
$("#about").hide();
$("#image").hide();
$("#logo").show("slow");
$("#about").show("slow");
$("#image").show("slow");
});
</script>
<body>
<div class="content">
<header>
<div class="logo">
<img src="images/logo.png" alt="Logo">
<h1 id="logo">DUTH College</h1>
</div>
<nav>
<ul>
<li><a href="dashboardstudent.html">Dashboard</a></li>
<li><a href="#about">About</a></li>
<li> <a href="viewExam.php">Exam</a>
<ul>
<li><a href="viewExam.php">View Exam Dates</a></li>
</ul>
</li>
<li> <a href="viewGpa.php">GPA</a>
<ul>
<li><a href="viewGpa.php">View GPA</a></li>
</ul>
</li>
<li> <a href="">Module</a>
<ul>
<li><a href="viewmodule.php">view module</a></li>
</ul>
</li>
<li><a href="login.html">Log Out</a></li>
</ul>
</nav>
</header>
<div class="massage">
<h1 class="Massage">Now You have Logged-in as a Student</h1>
</div>
<div class="hello" id="image">
<img src="images2/Untitled design.png" alt="Students" class="hello-image">
</div>
<div class="about">
<h1 class="About" id="about">About</h1>
<p>
Welcome to the DUTH College, your all-in-one solution for effortless education management. Designed to streamline your academic journey, this platform empowers you to effortlessly manage and keep track of your courses, exam schedules, and performance data. Say goodbye to the hassle of juggling multiple tools and hello to a centralized hub that simplifies your educational experience. With the Student Course Tracker, you can stay organized, stay on top of deadlines, and achieve your academic goals with ease.
</p>
</div>
<footer class="footer">
<pre>
<img src="Images/logo.png" alt="Institute logo">
<a href="mailto:programes@nibm.lk">Contact Us</a>
or call +94 75 468 3291 | © 2024 DUTH College
</pre>
</footer>
</div>
</body>
</html>