-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcopyright.information.php
More file actions
78 lines (60 loc) · 2.27 KB
/
copyright.information.php
File metadata and controls
78 lines (60 loc) · 2.27 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-color: peru;
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>Copyright Information</h1>
<main>
<p>At D. S. Senanayake Memorial Public Library, we uphold copyright laws and abide by AACR2 guidelines, ensuring the responsible and lawful use of our extensive collection of materials. Our commitment to respecting intellectual property rights extends to our digital resources, manuscripts, encyclopedias, and rare books. Our digital resources and content are governed by copyright laws, ensuring that materials are used in accordance with licensing agreements and fair use policies. If you have any copyright-related inquiries or wish to report concerns, kindly reach out to our copyright team.</p>
</main>
<!--...................................................................
..................................Footer...............................
....................................................................-->
<?php
include_once 'Footer\footer.php';
?>
</body>
</html>