-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.us.php
More file actions
79 lines (61 loc) · 3.3 KB
/
about.us.php
File metadata and controls
79 lines (61 loc) · 3.3 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
<html>
<head>
<!--boostrap-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
<title>Library Rules and Regulations</title>
<style>
body {
background-color: #f5f5f5;
}
h1 {
background: linear-gradient(90deg, rgba(190, 120, 38, 0.00) 10%, orange 40%, orange 60%, rgba(255, 255, 255, 0.00) 90%);
color: white;
padding: 5px;
text-align: center;
}
main {
max-width: 900px;
margin: 30px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px lightgray;
border-radius: 5px;
}
h2 {
color: orange;
padding-top: 10px;
}
p {
font-family: 'Arial', sans-serif;
line-height: 1.6;
color: #666;
}
ol {
list-style: none;
padding: 0;
}
li {
margin-bottom: 15px;
}
</style>
</head>
<body>
<h1>About Us</h1>
<main>
<p>D. S. Senanayake Memorial Public Library is a beacon of knowledge and community engagement, serving an extensive reader base of 85,000 individuals, with 15,000 active readers, encompassing both adult and senior members. Our library boasts diverse collections, including ancient records, manuscripts, encyclopedias, and rare books, all cataloged using the Dewey Decimal Cataloguing System. Committed to upholding the highest standards, our library follows the AACR2 principles—a benchmark for cataloging practices—ensuring meticulous organization and accessibility of our extensive collections. We offer a multitude of services, including mobile libraries, children's libraries, American Corner, reading rooms, and study areas. Additionally, we provide reader-oriented educational courses, art exhibitions, and cultural programs, such as language classes, concerts, and vocational programs. Our commitment to inclusivity extends to readers with special needs, and we are proud to conduct outreach programs across Sri Lanka, promoting education, culture, and community.</p>
<p>At the heart of our mission is inclusivity; we embrace readers with diverse needs, facilitating their engagement with our programs and resources. Through educational courses, art exhibitions, and cultural programs, we foster an environment that transcends boundaries and enriches the lives of our community. Our commitment to excellence in service delivery and adherence to personal standards reflects our dedication to fostering a thriving culture of learning and discovery.</p>
</main>
<!--...................................................................
..................................Footer...............................
....................................................................-->
<?php
include_once 'Footer\footer.php';
?>
</body>
</html>