forked from Akash-78/College-Management-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (48 loc) · 2.32 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Home</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<link rel='stylesheet' href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous">
<link rel="stylesheet" href="./css/mycss.css">
</head>
<body>
<nav class="w3-sidebar w3-grey w3-bar-block w3-hide-small w3-small w3-center">
<a href="./student-management/login.php" target="home-content"
class="w3-bar-item w3-button w3-padding-large w3-hover-black">
<p>Student Mgmt</p>
</a>
<a href="./hostel_management/index.php" target="home-content"
class="w3-bar-item w3-button w3-padding-large w3-hover-black">
<p>Hostel Mgmt</p>
</a>
<a href="./teacher-management/trms/index.php" target="home-content"
class="w3-bar-item w3-button w3-padding-large w3-hover-black">
<p>Teacher Mgmt</p>
</a>
<a href="./ees/index.php" target="home-content" class="w3-bar-item w3-button w3-padding-large w3-hover-black">
<p>Entry Exit</p>
</a>
</nav>
<div class="w3-bottom w3-hide-large w3-hide-medium" id="myNavbar">
<div class="w3-bar w3-white w3-opacity w3-hover-opacity-off w3-center w3-small">
<a href="./student-management/login.php" target="home-content" class="w3-bar-item w3-button"
style="width:25% !important">Student Mgmt</a>
<a href="./hostel_management/index.php" class="w3-bar-item w3-button" style="width:25% !important">Hostel
Mgmt</a>
<a href="./teacher-management/trms/index.php" class="w3-bar-item w3-button"
style="width:25% !important">Teacher
Mgmt</a>
<a href="./ees/index.php" class="w3-bar-item w3-button" style="width:25% !important">Entry Exit</a>
</div>
</div>
<main>
<iframe src="./welcome.html" frameborder="0" name="home-content"></iframe>
</main>
</body>
</html>