-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
216 lines (173 loc) · 5.02 KB
/
index.php
File metadata and controls
216 lines (173 loc) · 5.02 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<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>Home</title>
<script src="JQuery/jquery.min.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Audiowide|Sofia|Trirong">
<style type="text/css">
#heading {
display: flex;
overflow: hidden;
justify-content: center;
height: 120px;
}
#trapezoid {
border: 80px solid rgba(0,0,0,0);
border-bottom: 60px solid rgba(255, 165, 0, 0.5);;
transform: rotateX(180deg);
width: 1000px;
}
#content {
font-size: 32px;
color: white;
text-align: center;
font-family: "Audiowide", sans-serif;
padding: 10px;
transform: rotateX(180deg);
}
#bg1 {
background: url('Image/library.pic.01.1.jpg');
background-repeat: no-repeat;
background-size: cover;
background-position: center;
filter: brightness(80%);
}
#bg2 {
background: url('Image/library2.jpg');
background-repeat: no-repeat;
background-size: cover;
background-position: center;
filter: brightness(70%);
}
#text_1 {
color: rgba(255, 255, 255, 0.65);
font-family: "Lucida Handwriting";
font-size: 95px;
font-style: normal;
font-weight: 500;
line-height: normal;
padding-left: 250px;
margin-top: 20px;
position: relative;
}
#text_2 {
color: rgba(255, 255, 255, 0.65);
font-family: "Lucida Handwriting";
font-size: 95px;
font-style: normal;
font-weight: 500;
line-height: normal;
padding-left: 250px;
position: relative;
}
#text_3 {
color: white;
font-family: Garamond;
font-variant: small-caps;
font-size: 25px;
font-style: normal;
font-weight: lighter;
line-height: normal;
padding-top: 40px;
padding-left: 250px;
position: relative;
}
#text_4 {
color: white;
font-family: Garamond;
font-variant: small-caps;
font-size: 25px;
font-style: normal;
font-weight: lighter;
line-height: normal;
padding-left: 250px;
margin-bottom: 80px;
position: relative;
}
#visit {
margin-left: 42%;
margin-right: 42%;
margin-top: 80px;
margin-bottom: 60px;
background-color: transparent;
border: 3px solid orange;
border-radius: 10px;
color: white;
font-size: 20px;
font-weight: bold;
padding: 12px 35px;
width: 16%;
}
#visit:hover {
color: orange;
border-color: orange;
box-shadow: 0px 0px 15px orange;
}
</style>
</head>
<body>
<div id="bg1">
<div id="heading">
<div id="trapezoid">
<div id="content">D.S.Senanayake Memorial Public Library</div>
</div>
</div>
<div id="text_1">
Explore a World of
</div>
<div id="text_2">
Knowledge
</div>
<div id="text_3">
Discover a vast collection of books and expand your
</div>
<div id="text_4">
horizons at the D.S.Senanayake Memorial Public Library
</div>
<?php
include_once 'includes/typing.effect.php';
?>
<br><br>
</div>
<div id="bg2">
<?php
include_once 'includes/gallery.effecyt.php';
?>
<button id="visit" type="button" onclick="openPopup()">Visit Now</button>
</div>
<?php
include_once 'login.form.php';
?>
<script>
$(document).ready(function () {
$('#text_1').show();
$('#text_1').animate({right: "200px"}, 500);
});
$(document).ready(function () {
$('#text_2').show();
$('#text_2').animate({right: "200px"}, 700);
});
$(document).ready(function () {
$('#text_3').show();
$('#text_3').animate({right: "200px"}, 900);
});
$(document).ready(function () {
$('#text_4').show();
$('#text_4').animate({right: "200px"}, 1000);
});
</script>
<!--...................................................................
..................................Footer...............................
....................................................................-->
<?php
include_once 'Footer/footer.php';
?>
</body>
</html>