-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathhome.html
More file actions
104 lines (91 loc) · 2.82 KB
/
home.html
File metadata and controls
104 lines (91 loc) · 2.82 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Home-SUSL Students Affair</title>
<link rel="stylesheet" href="css/home.css">
<link rel="stylesheet" href="css/slideshow.css">
</head>
<body>
<div id="header">
<div>
<a href="home.html" id="logo"><img src="images/Logo-SUSL.png" alt="Logo-SUSL" height="100px" width="200px"></a>
<ul>
<li class="selected"><a href="home.html">Home</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
<div class="slideshow-container">
<div class="mySlides fade">
<div class="numbertext">1 / 3</div>
<img src="images/img1.png" style="width:100%">
</div>
<div class="mySlides fade">
<div class="numbertext">2 / 3</div>
<img src="images/img2.png" style="width:100%">
</div>
<div class="mySlides fade">
<div class="numbertext">3 / 3</div>
<img src="images/img3.png" style="width:100%">
</div>
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
<br>
<div style="text-align:center">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
</div>
<br><br>
<div class="other">
<p>
This is Sabaragamuwa University Students' Affair website.University<br> Students can login and Manage their details.
Students can send messages to lectures more easier than ever.
</p>
</div>
<div class="others">
<p>Also
students can easily register through this System.
They do not have to calculate GPA.This System auto genarate.
Its a simple thing you have to do, just create an account in this University Information System.
</p>
</div>
<div id="footer">
<div>
<p>
©<img src="images/cis.png" width="100px" height="50px">All Rights Reserved.
</p>
<div class="connect">
<a href=# id="googleplus">google+</a> <a href=# id="contact">contact</a> <a href=# id="facebook">facebook</a> <a href=# id="twitter">twitter</a>
</div>
</div>
</div>
<script>
var slideIndex = 1;
showSlides(slideIndex);
function plusSlides(n) {
showSlides(slideIndex += n);
}
function currentSlide(n) {
showSlides(slideIndex = n);
}
function showSlides(n) {
var i;
var slides = document.getElementsByClassName("mySlides");
var dots = document.getElementsByClassName("dot");
if (n > slides.length) {slideIndex = 1}
if (n < 1) {slideIndex = slides.length}
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " active";
}
</script>
</body>
</html>