-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (48 loc) · 1.41 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
<html>
<head>
<title>Home</title>
</head>
<link rel = "stylesheet" type ="text/css" href="mystyle.css.css">
</head>
<body>
<header>
<h1>WELCOME TO UTAR LIBRARY SYSTEM</h1>
</header>
<div class="navbar">
<a href="#"> Home</a>
<a href="student/login.php">Login as Lecture/Student</a>
<a href="librarian/login.php">Login as Admin</a>
<a href="student/registration.php">Create New Account</a>
<a href="contact.html">Contact Us</a>
</div>
<div class="w3-container">
<h2 class="w3-center"></h2>
<div class="w3-content w3-section" style="max-width:1000px "height="600">
<img class="mySlides" src="image main/utar2.jpg" style="width:150%"height="600">
<img class="mySlides" src="image main/utar.jpg" style="width:150%"height="600">
<img class="mySlides" src="image main/utar1.jpg" style="width:150%"height="600">
</div>
<script>
var myIndex = 0;
carousel();
function carousel() {
var i;
var x = document.getElementsByClassName("mySlides");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
myIndex++;
if (myIndex > x.length) {myIndex = 1}
x[myIndex-1].style.display = "block";
setTimeout(carousel, 2000); // Change image every 2 seconds
}
</script>
</div>
<article>
<p>
</p>
</article>
<footer id="pageFooter">Ⓒ 2020 Ted Berhad. All Rights Reserved.
</footer>
</body>
</html>