-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccessibility.php
More file actions
78 lines (60 loc) · 2.26 KB
/
accessibility.php
File metadata and controls
78 lines (60 loc) · 2.26 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
<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>Accessibility</h1>
<main>
<p>Accessibility lies at the core of our mission at D. S. Senanayake Memorial Public Library. We are committed to providing an inclusive online platform that ensures equal access for all, in line with Web Content Accessibility Guidelines (WCAG). Should you encounter any barriers or require support accessing our digital resources, please contact our dedicated team. We strive to make our library services accessible to every individual, including readers with diverse needs and disabilities.</p>
</main>
<!--...................................................................
..................................Footer...............................
....................................................................-->
<?php
include_once 'Footer\footer.php';
?>
</body>
</html>