forked from ChristyBiju/Student-Result-Management-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nav.php
75 lines (68 loc) · 2.54 KB
/
nav.php
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>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/nav.css">
</head>
<body>
<div class="navbar">
<a href="dashboard.php">Dashboard | </a>
<!-- <a href="#news">News</a> -->
<div class="dropdown">
<button class="dropbtn">Students
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="add-student.php" style="font-size : 20px">Add Students</a>
<a href="manage-students.php" style="font-size : 20px">Manage Students</a>
<!-- <a href="#">Link 3</a> -->
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Branch
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="add-branch.php" style="font-size : 20px">Add branch</a>
<a href="manage-branch.php" style="font-size : 20px">Manage branch</a>
<!-- <a href="#">Link 3</a> -->
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Semester
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="add-semester.php" style="font-size : 20px">Add semester</a>
<a href="manage-sem.php" style="font-size : 20px">Manage semester</a>
<!-- <a href="#">Link 3</a> -->
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Subjects
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="add-subjects.php" style="font-size : 20px">Add Subjects</a>
<a href="manage-subjects.php" style="font-size : 20px">Manage Subjects</a>
<a href="add-subjcombo.php" style="font-size : 20px">Add Subject Combination</a>
<a href="manage-subjcomb.php" style="font-size : 20px">Manage Subject Combination</a>
<!-- <a href="#">Link 3</a> -->
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Result
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="add-results.php" style="font-size : 20px">Add result</a>
<a href="manage-results.php" style="font-size : 20px">Manage results</a>
<!-- <a href="#">Link 3</a> -->
</div>
</div>
<a href="change-password.php"style="font-size : 23px" >Admin Change Password </a>
<a href="logout.php"style="font-size : 23px; float:right; margin-right : 10px" ><i class="fa fa-sign-out"></i> Logout </a>
</div>
</body>
</html>