-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathabout.php
74 lines (66 loc) · 2.8 KB
/
about.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<?php include_once("php/head.php");
if (isset($_SESSION["admin"])) {
header("location: admindash.php");
}
?>
<title>About | FSKTM Alumni</title>
</head>
<body>
<div class="container-fluid p-0 m-0">
<?php include_once("php/heading.php") ?>
<main>
<div id="home-container" class="container-fluid">
<div class="jumbotron-news shadow">
<h2 class="display-5" style="text-align: center">ABOUT US</h2>
<br />
<div class="row featurette align-items-center justify-content-center">
<div class="col-md-9 announcement-sec order-2 order-md-1">
<img class="featurette-image news-img img-fluid mx-auto shadow-lg" src="img/fsktm.jpg" alt="" height="110%" width="110%" />
</div>
</div>
<div class="row featurette align-items-center mt-5 justify-content-center">
<div class="col-md-9 announcement-sec order-1 order-md-2">
<h2 class="featurette-heading display-7 mb-5" style="text-align: center">
Faculty of Computer Science & Information Technology Alumni
Department
</h2>
<p class="lead">
Formed in 1965, the Faculty of Computer Science & Information
Technology made the university one of the pioneers in computer
usage in Malaysia. Since its establishment, the Faculty of
Computer Science and Information Technology has been led by a
number of distinguished persons.
</p>
<p class="lead">
The FSKTM Alumni Department was formed in 2020, to help and
facilitate various alumni elements. This would allow alumnus
to have formal reunion sessions, help them search new job
opportunities as well as provide them with fun interactive
events in which they could be a part of.
</p>
<p class="lead">
You can register for an account if you have completed your
Bachelor's, Master's or PhD program in FSKTM. We welcome you
to our beautiful alumni portal for all your alumni needs!
</p>
<p class="lead">
For more information feel free to contact
<strong> +60 12-345 6789 </strong> or email us at
<strong><a href="mailto:[email protected]" class="about-mail">
[email protected]</a></strong>
</p>
<br />
</div>
</div>
<hr class="featurette-divider" />
</div>
</div>
</main>
<?php include_once("php/footer.php") ?>
</div>
<?php include_once("php/scripts.php") ?>
</body>
</html>