-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathget.help.php
More file actions
78 lines (60 loc) · 2.19 KB
/
get.help.php
File metadata and controls
78 lines (60 loc) · 2.19 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>Get Help</h1>
<main>
<p>Our support team is devoted to assisting the 85,000 strong reader base of D. S. Senanayake Memorial Public Library, including our subset of 15,000 active readers. Whether you seek guidance while navigating our platform, accessing resources, or have general queries, our knowledgeable staff are here to help. Feel free to explore our FAQs section for quick answers or contact our support team for personalized assistance.</p>
</main>
<!--...................................................................
..................................Footer...............................
....................................................................-->
<?php
include_once 'Footer\footer.php';
?>
</body>
</html>