-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (85 loc) · 2.05 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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="eng">
<head>
<title>
Online Library Management System
</title>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=50%, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<style type="text/css">
nav
{
float: right;
word-spacing: 30px;
padding: 20px;
}
li{
background-color: #5e594f;
float: left;
margin-top: 5px;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 40px;
text-decoration: none;
}
li a:hover{
background-color: black;
}
</style>
</head>
<body>
<div class="wrapper">
<header>
<div class="logo">
<br><h2><b><i><em><mark class="ab">ONLINE LIBRARY MANAGEMENT SYSTEM</mark></em></strong></i></b></h2>
</div>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="login.html">STUDENT-LOGIN</a></li>
<li><a href="login.html">ADMIN_LOGIN</a></li>
<li><a href="">FEEDBACK</a></li>
</ul>
</header>
<section>
<script type="text/javascript">
var a=0;
carousel();
function carousel()
{
var i;
var x= document.getElementsByClassName("mySlides");
for(i=0; i<x.length; i++)
{
x[i].style.display="none";
}
a++;
if(a > x.length) {a = 1}
x[a-1].style.display = "background";
setTimeout(carousel, 1);
}
</script>
<!--
<br><br><br>
<div class="box">
<br><br><br><br>
<h1 style="text-align: center; font-size: 35px;">Welcom to library</h1><br><br>
<h1 style="text-align: center;font-size: 25px;">Opens at: 09:00 </h1><br>
<h1 style="text-align: center;font-size: 25px;">Closes at: 15:00 </h1><br>
</div>
-->
</section>
<footer>
<p class="foot">
Email:  iiitvadodara.ac.in <br>
Mobile:    +918058146837
</p>
</footer>
</div>
</body>
</html>