-
Notifications
You must be signed in to change notification settings - Fork 2
/
aboutus.html
419 lines (367 loc) · 22.8 KB
/
aboutus.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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
<!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="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>Calculate</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/Footer.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Protest+Guerrilla&display=swap" rel="stylesheet">
<!--Font of the slogan-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Libre+Barcode+39&family=Silkscreen:wght@400;700&display=swap"
rel="stylesheet">
<!--End of Font of the slogan-->
<!--Font of the headings-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bungee&family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Honk&family=Protest+Revolution&family=Smooch+Sans:[email protected]&display=swap" rel="stylesheet">
<!--End of font -->
<!--Font for the about us Paragraph-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Smooch+Sans:[email protected]&display=swap" rel="stylesheet">
<!--End in Font of the about us Paragraph-->
<script>
document.addEventListener("DOMContentLoaded", function () {
// Initial text
document.querySelector('.banner_text').innerText = "To know about your payment";
// Array of messages to loop through
const messages = [
"To know about university",
"To know about all events",
"To know about all degrees"
];
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);
});
function biglogo(x) {
x.style.height = "32px";
x.style.width = "32px";
}
function normallogo(x) {
x.style.height = "20px";
x.style.width = "20px";
}
</script>
</head>
<body
style="cursor: url('https://lh3.googleusercontent.com/drive-viewer/AEYmBYSqyflt7XmFBZ1ziYGYLY3obqxaqbYMOiyB7JUK3bKq16quXwDwUw8rEw8KACJVDy6NXYAtwNawqLTb5yChtBRj0za8=s2560'), grab;">
<div class="top">
<div class="banner">
<img src="Source/Open sesame.png" alt="banner">
<div class="banner_text">To know about your full 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>
<div class="about-us-container">
<img src="Source/kylix.png" alt="Kylix Logo" id="about-us-logo">
<div id="logoLetters">
<span style="animation-delay:0.2s ;" class="logoLetter">T</span>
<span style="animation-delay:0.4s ;" class="logoLetter">e</span>
<span style="animation-delay:0.6s ;" class="logoLetter">a</span>
<span style="animation-delay:0.8s ;" class="logoLetter">m</span>
<span style="animation-delay:1s ;" class="logoLetter"> </span>
<span style="animation-delay:1.2s ;" class="logoLetter">K</span>
<span style="animation-delay:1.4s ;" class="logoLetter">y</span>
<span style="animation-delay:1.6s ;" class="logoLetter">l</span>
<span style="animation-delay:1.8s ;" class="logoLetter">i</span>
<span style="animation-delay:2s ;" class="logoLetter">x</span>
</div>
<div id="slogan">
<p id="sloganParagraph"></> Relax; it's only ONEs and ZEROs </></p>
</div>
<!--Horizontal line-->
<hr>
<div class="about-us-content">
<h2 class="heading_font">Our Story</h2>
<div id="aboutus-div">
<div id="aboutus-paragraph">
<p><span>T</span>eam Kylix,is a dynamic force in the software
development arena. Founded in December 2022, our team has blossomed into a vibrant community of
dedicated individuals united by a shared passion for innovation and excellence. With a relentless drive
to push the boundaries of technology, we embark on each project with enthusiasm and determination,
fueled by the belief that every challenge is an opportunity for growth. Together, we strive to create
meaningful software solutions that not only meet but exceed expectations, leaving a lasting impact on
the industry and society at large.</p>
<p>At the heart of Team Kylix lies a relentless drive to push the boundaries of what's possible, fueled by
a passion for problem-solving and a thirst for knowledge. With each project we undertake, we strive not
only to deliver exceptional results but also to leave a lasting impression on the industry. As
trailblazers in the ever-evolving landscape of software development, we embrace challenges as
opportunities for growth and innovation. Our dedication to excellence and our unwavering commitment to
our craft propel us forward, inspiring us to reach new heights and set new standards for success.</p>
<p>Join us on our journey as we write the next chapter in our story, where the possibilities are limitless,
and the future is ours to shape. Together, let's harness the power of technology to make a meaningful
difference in the world, one line of code at a time.</p>
</div>
<div id="aboutus-image">
<img id="aboutus-team-img" src="https://devsquad.com/assets/site/homepage/hero-team.svg" alt="Image of a team">
</div>
</div>
<h3 class="heading_font">Meet Our Team</h3>
<div id="team-container">
<!--Team member 01-->
<div class="member">
<!--Change your PP here--->
<img src="https://avatars.githubusercontent.com/u/116092558?v=4" class="mem_pp">
<div class="mem_details">
<p class="mem_name">Vinod Warnakulasooriya</p>
<p class="mem_title">Founder & Developer of team Kylix | Undergraduate</p>
<div class="mem_socials">
<!--Change ur socials here-->
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://github.com/vinuwa98', '_blank');"
class="gthb_logo mem_soc_rec"></div>
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://www.facebook.com/vinuwa.social/', '_blank');"
class="fb_logo mem_soc_rec"></div>
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://www.instagram.com/Vinuwa.social', '_blank');"
class="insta_logo mem_soc_rec"></div>
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://www.linkedin.com/in/vinuwa/', '_blank');"
class="lkin_logo mem_soc_rec"></div>
</div>
</div>
</div>
<!--Team member 02-->
<div class="member">
<!--Change your PP here--->
<img src="https://avatars.githubusercontent.com/u/116260105?v=4" class="mem_pp">
<div class="mem_details">
<p class="mem_name">Ishfa Ishak</p>
<p class="mem_title">Developer of team Kylix | Undergraduate</p>
<div class="mem_socials">
<!--Change ur socials here-->
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://github.com/Ishfaishak', '_blank');"
class="gthb_logo mem_soc_rec"></div>
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://www.facebook.com', '_blank');"
class="fb_logo mem_soc_rec"></div>
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://www.instagram.com/ishfa_ishak?igsh=ZGUzMzM3NWJiOQ', '_blank');"
class="insta_logo mem_soc_rec"></div>
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://www.linkedin.com/in/ishfa-ishak-a41073239', '_blank');"
class="lkin_logo mem_soc_rec"></div>
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://www.twitter.com', '_blank');"
class="twt_logo mem_soc_rec"></div>
</div>
</div>
</div>
<!--Team member 03-->
<div class="member">
<!--Change your PP here--->
<img src="https://avatars.githubusercontent.com/u/116507954?v=4"
class="mem_pp">
<div class="mem_details">
<p class="mem_name">Kanzul Nuha</p>
<p class="mem_title">Developer of team Kylix | Undergraduate</p>
<div class="mem_socials">
<!--Change ur socials here-->
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://github.com/kanzulnuha2002', '_blank');"
class="gthb_logo mem_soc_rec"></div>
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://www.facebook.com', '_blank');"
class="fb_logo mem_soc_rec"></div>
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://www.instagram.com/kanzulnuha._?igsh=ZDExYjZkNGI0OA==', '_blank');"
class="insta_logo mem_soc_rec"></div>
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://www.linkedin.com', '_blank');"
class="lkin_logo mem_soc_rec"></div>
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://www.twitter.com', '_blank');"
class="twt_logo mem_soc_rec"></div>
</div>
</div>
</div>
<!--Team member 04-->
<div class="member">
<!--Change your PP here--->
<img src="https://avatars.githubusercontent.com/u/119842704?v=4" class="mem_pp">
<div class="mem_details">
<p class="mem_name">Shamra Faizal</p>
<p class="mem_title">Developer of team Kylix | Undergraduate</p>
<div class="mem_socials">
<!--Change ur socials here-->
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://github.com/Shamra5', '_blank');"
class="gthb_logo mem_soc_rec"></div>
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://www.facebook.com', '_blank');"
class="fb_logo mem_soc_rec"></div>
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://www.instagram.com/shamra__faizal', '_blank');"
class="insta_logo mem_soc_rec"></div>
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://www.linkedin.com', '_blank');"
class="lkin_logo mem_soc_rec"></div>
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://www.twitter.com', '_blank');"
class="twt_logo mem_soc_rec"></div>
</div>
</div>
</div>
<!--Team member 05-->
<div class="member">
<!--Change your PP here--->
<img src="https://avatars.githubusercontent.com/u/144241980?s=400&u=d268d6683e3b0f8ef2e47ce0ae1496f7c82f870c&v=4"
class="mem_pp">
<div class="mem_details">
<p class="mem_name">Oshada Rathnasiri</p>
<p class="mem_title">Developer of team Kylix | Undergraduate</p>
<div class="mem_socials">
<!--Change ur socials here-->
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://github.com/oshadaDev', '_blank');"
class="gthb_logo mem_soc_rec"></div>
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://www.linkedin.com/in/oshada-rathnasiri-858098246/', '_blank');"
class="lkin_logo mem_soc_rec"></div>
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://twitter.com/crp_oshada', '_blank');"
class="twt_logo mem_soc_rec"></div>
</div>
</div>
</div>
<!--Team member 07-->
<div class="member">
<!--Change your PP here--->
<img src="https://avatars.githubusercontent.com/u/116559859?v=4" class="mem_pp">
<div class="mem_details">
<p class="mem_name">Vidura Abeysinghe</p>
<p class="mem_title">Developer of team Kylix | Undergraduate</p>
<div class="mem_socials">
<!--Change ur socials here-->
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://github.com/vidura13', '_blank');"
class="gthb_logo mem_soc_rec"></div>
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://www.instagram.com/vd___a', '_blank');"
class="insta_logo mem_soc_rec"></div>
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://www.linkedin.com/in/viduraabeysinghe/', '_blank');"
class="lkin_logo mem_soc_rec"></div>
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://twitter.com/Vidura_13', '_blank');"
class="twt_logo mem_soc_rec"></div>
</div>
</div>
</div>
<!--Team member 08-->
<div class="member">
<!--Change your PP here--->
<img src="https://avatars.githubusercontent.com/u/117435121?v=4" class="mem_pp">
<div class="mem_details">
<p class="mem_name">Sandun Liyanage</p>
<p class="mem_title">Developer of team Kylix | Undergraduate</p>
<div class="mem_socials">
<!--Change ur socials here-->
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://github.com/vidura13', '_blank');"
class="gthb_logo mem_soc_rec"></div>
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://www.instagram.com/vd___a', '_blank');"
class="insta_logo mem_soc_rec"></div>
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://www.linkedin.com/in/viduraabeysinghe/', '_blank');"
class="lkin_logo mem_soc_rec"></div>
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://twitter.com/Vidura_13', '_blank');"
class="twt_logo mem_soc_rec"></div>
</div>
</div>
</div>
<!--Team member 09-->
<div class="member">
<!--Change your PP here--->
<img src="https://avatars.githubusercontent.com/u/153409947?v=4" class="mem_pp">
<div class="mem_details">
<p class="mem_name">Wimansi Navoda </p>
<p class="mem_title">Developer of team Kylix | Undergraduate</p>
<div class="mem_socials">
<!--Change ur socials here-->
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://github.com/wimansi-navoda', '_blank');"
class="gthb_logo mem_soc_rec"></div>
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://www.instagram.com/vd___a', '_blank');"
class="insta_logo mem_soc_rec"></div>
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://www.linkedin.com/in/viduraabeysinghe/', '_blank');"
class="lkin_logo mem_soc_rec"></div>
<div onmouseover="biglogo(this)" onmouseout="normallogo(this)"
onclick="window.open('https://twitter.com/Vidura_13', '_blank');"
class="twt_logo mem_soc_rec"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<button onclick="window.open('https://whatsapp.com/channel/0029VaChd6G3wtb0OKkKEg23', '_blank');"
id="whatsappButton">
</button>
<button onclick="window.open('https://www.linkedin.com/company/team-kylix/', '_blank');" id="linkedInButton">
</button>
<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>
</body>
</html>