-
Notifications
You must be signed in to change notification settings - Fork 2
/
Home.html
370 lines (324 loc) · 15.2 KB
/
Home.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="Contents/Home/HomeStyle.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<title>Home</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/boxicons.js"></script>
<link rel="stylesheet" href="NativeStyle.css">
<link rel="stylesheet" href="Contents/SlideShow.css">
<link rel="stylesheet" href="Contents/ArticalSlideShow.css">
<link rel="stylesheet" href="Contents/PostShow.css">
<link rel="stylesheet" href="Contents/Footer.css">
<script>
document.addEventListener("DOMContentLoaded", function() {
// Initial text
document.querySelector('.banner_text').innerText = "To know about your payments";
// Array of messages to loop through
const messages = [
"To Know About University",
"To Know About All Events",
"To Know About All Degree"
];
let index = 0;
// Set interval to change text every 5 seconds
const intervalId = setInterval(function() {
document.querySelector('.banner_text').innerText = messages[index];
index = (index + 1) % messages.length; // Move to the next message, loop back to the start if at the end
}, 2000);
});
</script>
</head>
<body>
<div class="top">
<div class="banner">
<img src="Source/Open sesame.png" alt="banner">
<div class="banner_text">To Know About Your Payment</div>
</div>
</div>
<div class="middle">
General Inquiries: (+94) 011 2881 000
Exams/Certificates: (+94) 11-2881461 | (+94) 11-2881040
</div>
<header class="header">
<nav class="navbar">
<a href="Home.html" style="--i:0;">Home</a>
<a href="Calculate.html" style="--i:1;">Calculate</a>
<a href="article.html" style="--i:2;">Article</a>
<a href="events.html" style="--i:3;">Events</a>
<a href="aboutus.html" style="--i:4;">About Us</a>
</nav>
</header>
<!-- Slideshow container -->
<div class="slideshow-container">
<!-- Full-width images with number and caption text -->
<div class="mySlides fade">
<img src="Source/home.jpg" style="width:100%">
<div class="text"></div>
</div>
<div class="mySlides fade">
<img src="Source/artist.jpg" style="width:100%">
<div class="text"></div>
</div>
<div class="mySlides fade">
<img src="Source/p2.jpg" style="width:100%">
<div class="text"></div>
</div>
<div class="mySlides fade">
<img src="Source/pay.jpg" style="width:100%">
<div class="text"></div>
</div>
<!-- Next and previous buttons -->
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
<br>
<!-- The dots/circles -->
<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>
<span class="dot" onclick="currentSlide(4)"></span>
</div>
<script>
var slideIndex = 0;
showSlides();
function showSlides() {
var i;
var slides = document.getElementsByClassName("mySlides");
var dots = document.getElementsByClassName("dot");
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
slideIndex++;
if (slideIndex >= slides.length) { slideIndex = 0; }
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex].style.display = "block";
dots[slideIndex].className += " active";
setTimeout(showSlides, 3000); // Change image every 3 seconds
}
function plusSlides(n) {
showSlidesByIndex(slideIndex += n);
}
function currentSlide(n) {
showSlidesByIndex(slideIndex = n);
}
function showSlidesByIndex(n) {
var i;
var slides = document.getElementsByClassName("mySlides");
var dots = document.getElementsByClassName("dot");
if (n >= slides.length) { slideIndex = 0; }
if (n < 0) { slideIndex = slides.length - 1; }
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].style.display = "block";
dots[slideIndex].className += " active";
}
</script>
<div id="about-faculty">
<div class="container">
<h2 style="font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; color: #0e0d0d;">EXPLORE OUR FACULTIES </h2>
<div id="faculty_about_left">
<ul>
<li>
<a href="">ENGINEERING</a>
</li>
<li>
<a href="">NATURAL SCIENCE</a>
</li>
<li>
<a href="">HEALTH SCIENCE</a>
</li>
<li>
<a href="">EDUCATION</a>
</li>
<li>
<a href="">SOCIAL SCIENCE</a>
</li>
<li>
<a href="">MANAGMENT STUDIES</a>
</li>
</ul>
</div>
<div id="faculty_about_right">
<img src="Source/ousl_logo-1024x231.png" alt="">
<p style="text-align: justify; font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;">The Open University of Sri Lanka (OUSL; Sinhala: ශ්රී ලංකා විවෘත විශ්වවිද්යාලය, Tamil: இலங்கை திறந்த பல்கலைக்கழகம்)
is a national university in Sri Lanka. It is unique
within the Sri Lankan national university system for being the only university to offer programs of
study leading to certificate, diploma, degrees and postgraduate degrees up to PhD level through the Open and Distance
Mode of Learning (ODL). The degrees awarded by the university are treated as equivalent to degrees awarded by any other Sri Lankan University under the preview of the University Grants Commission </p>
<span>
<a href="https://ou.ac.lk/" style="color: #d48439;font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;">Read More></a>
<i class="angle_right" aria-hidden="true"></i>
</span>
</div>
</div>
</div>
<section>
<div>
<div id="home_news">
<div class="container">
<h2 style="font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; color: #181717;">SPOTLIGHT NEWS</h2>
<div id="home_news_inner">
<ul>
<li>
<a href="https://web.facebook.com/share/p/EcgefFA2NYahgccB/g">
<div class="home_news_inner_img">
<img src="Source/dean.jpg" alt="">
</div>
<div class="home_news_inner_text">
<big style="font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;">NEWS</big>
<h4 style="font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;">SESoc Software Engineering Society Inaugural General Meeting'24</h4>
</div>
</a>
</li>
<li>
<a href="">
<div class="home_news_inner_img">
<img src="Source/education.jpg" alt="">
</div>
<div class="home_news_inner_text">
<big style="font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;">NEWS</big>
<h3>...........</h3>
</div>
</a>
</li>
<li>
<a href="">
<div class="home_news_inner_img">
<img src="Source/news.jpg" alt="">
</div>
<div class="home_news_inner_text">
<big style="font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;">NEWS</big>
<h3>...........</h3>
</div>
</a>
</li>
<li>
<a href="">
<div class="home_news_inner_img">
<img src="Source/acedemic.jpg" alt="">
</div>
<div class="home_news_inner_text">
<big style="font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;">ACADEMIC</big>
<h3>...........</h3>
</div>
</a>
</li>
<li>
<a href="">
<div class="home_news_inner_img">
<img src="Source/event.jpg" alt="">
</div>
<div class="home_news_inner_text">
<big style="font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;">STUDENT LIFE</big>
<h3>...........</h3>
</div>
</a>
</li>
<li>
<a href="https://web.facebook.com/share/p/hGCaGxbs75M3gmp2/">
<div class="home_news_inner_img">
<img src="Source/upcomming.jpg" alt="">
</div>
<div class="home_news_inner_text">
<big style="font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;">UPCOMMING</big>
<h4 style="font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;"> Field Visit 2: Enriching Cattle Management Experience</h4>
</div>
</a>
</li>
</ul>
</div>
<a href="">
<h5 style="color: #ec722c;">ALL NEWS, EVENTS & ANNOUNCEMENTS</h5>
</a>
</div>
</div>
</div>
</section>
<hr>
<div class="article_menu">
<div class="faculty_title" style="font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;">IMPORTANT EVENTS</div>
<div class="faculty_container">
<div class="faculty_section">
<img src="" class="">
<h3><a href="">
<big style="font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;">date</big>
</a></h3>
</div>
<div class="faculty_section">
<img src="" class="">
<h3><a href="">
<big style="font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;">date</big>
</a></h3>
</div>
<div class="faculty_section">
<img src="" class="">
<h3><a href="">
<big style="font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;">date</big>
</a></h3>
</div>
<!-- Add faculties -->
</div>
<!--line-->
<hr>
<section>
<h2 style="font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; color: #11100f;">OUR LOCAL AND INTERNATIONAL PARTNERSHIPS</h2>
<div id="home_brand_slider">
<div class="photo-square" style="--animation-speed: 5s ; --photo-size: 15%; ">
<div class="photo-container">
<img src="Source/slasscom.png" alt="Photo 1" onclick="location.href='https://slasscom.lk/';">
<img src="Source/orelit-logo.png" alt="Photo 2" onclick="location.href='//www.orelit.com/';">
<img src="Source/wso2-logo.png" alt="Photo 3" onclick="location.href='https://wso2.com/';">
<img src="Source/SriLankan_Airlines_Logo.svg.5893408c5b896.avif" alt="Photo 4" onclick="location.href='https://www.srilankan.com/en_uk/us';">
<img src="Source/png-clipart-logo-hemas-holdings-plc-hemas-hospitals-brand-font-non-toxic-text-logo.png" alt="Photo 5" onclick="location.href='https://www.hemas.com/';">
<img src="Source/law.png" alt="Photo 6" onclick="location.href='https://www.sllc.ac.lk';">
<img src="Source/uk ou.png" alt="Photo 7" onclick="location.href='//www.open.ac.uk/';">
</div>
</section>
<section>
<footer class="footer">
<div class="footer-container">
<div class="footer-column">
<h3>Contact Us</h3>
<p>Email: [email protected]</p>
<p>Phone: (+94) 011 2881 000</p>
</div>
<div class="footer-column">
<h3>Follow Us</h3>
<div class="social-icons">
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-instagram"></a>
<a href="#" class="fa fa-linkedin"></a>
</div>
</div>
<div class="footer-column">
<h3>Quick Links</h3>
<ul>
<li><a href="Home.html">Home</a></li>
<li><a href="Calculate.html">Calculate</a></li>
<li><a href="article.html">Article</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="aboutus.html">About Us</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 Open Sesame. All rights reserved.</p>
</div>
</footer>
</section>
</body>
</html>