-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout-us.php
More file actions
115 lines (106 loc) · 6.22 KB
/
about-us.php
File metadata and controls
115 lines (106 loc) · 6.22 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
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us | Alumni Association SICT</title>
<link rel="icon" href="assets/img/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/bootstrap-icons.min.css">
<link rel="stylesheet" href="assets/css/all.min.css">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<?php include('includes/header.php'); ?>
<section class="py-5 py-xl-8">
<div class="page-header-area">
<div class="container">
<div class="row text-center">
<div class="col-md-12">
<div class="section-title-wrapper text-white">
<div class="text-white hidden">
<h1 class="text-white mb-3 mt-4">About Us</h1>
<p class="text-white"><a href="/">Home </a> <i class="bi bi-arrow-right"></i> <span class="lnr lnr-arrow-right"></span>
<a href="about-us.php">About Us</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="py-2 py-md-4 mb-5">
<div class="container">
<div class="row gy-3 gy-md-4 gy-lg-0 align-items-lg-center">
<div class="col-12 col-lg-6 col-xl-5">
<img class="img-fluid rounded hidden" loading="lazy" src="assets/img/about-img.webp" alt="About">
</div>
<div class="col-12 col-lg-6 col-xl-7">
<div class="row justify-content-xl-center">
<div class="col-12 col-xl-11">
<h2 class="mb-3 aluh1 hidden">Who Are We?</h2>
<p class="lead fs-4 text-secondary mb-3 hidden">Alumni Association of the School of Information Communication Technology (SICT)</p>
<p class="mb-4 hidden">At a time when University education is undergoing a metamorphosis the Alumni
Associations have a great role to play in shaping the destiny of higher education. The
Alumni Association of the SICT has already embarked on a series of activities in that
direction. It is well known that in the past, this Association has not only helped the
undergraduate students of the SICT by way of providing scholarships but also
contributed significantly to the human resource development at the secondary education
level in Sri Lanka. The training programs, seminars and workshops for G.C.E. Advanced
Level teachers organized by the Alumni Association have significantly helped improve
their knowledge in the new areas introduced in to the G.C.E. Advanced Level curriculum.
In addition to the educational programs the association has also actively involved in
community projects and services in order to improve the quality of life of needy people.
</p>
<div class="row text-center">
<div class="col-6 col-lg-2 col-xl-5 hidden">
<div class="card h-100 border-1">
<div class="card-body p-4">
<a class="text-decoration-none link-dark stretched-link" href="executive-committee.php">
<div class="h6 card-title mb-0"><i class="bi bi-people" style="font-size: 20px;"></i> Executive Committee</div>
</a>
</div>
</div>
</div>
<div class="col-6 col-lg-2 col-xl-4 hidden">
<div class="card h-100 border-1">
<div class="card-body p-4">
<a class="text-decoration-none link-dark stretched-link" href="benefits.php">
<div class="h6 card-title mb-0"><i class="bi bi-info-lg" style="font-size: 20px;"></i> Benefits</div>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="member-area">
<div class="container">
<div class="row text-center">
<div class="col-md-12">
<div class="section-title-wrapper text-white">
<div class="text-white hidden">
<h3 style="color: #ffffff;font-size: 26px; font-weight: 500;">Join the Premier Alumni Association of SICT</h3>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-8 col-md-8 col-12" style="margin: auto;">
<div class="text-center">
<a href="join-with-us.php" class="hidden"><button type="button" class="btn calltoactionbtn mt-2"><i aria-hidden="true" class="far fa-handshake"></i> Apply for Membership</button></a>
</div>
</div>
</div>
</div>
</div>
</section>
<?php include('includes/footer.php'); ?>
</body>
</html>