-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
59 lines (52 loc) · 1.82 KB
/
about.php
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
<?php include('header.php'); ?>
<?php include('navbar_about.php'); ?>
<div class="container">
<div class="margin-top">
<div class="row">
<?php include('head.php'); ?>
<div class="text_content">
<table width="450" style="margin: 0pt ">
<thead>
<tr>
<th colspan="3" style="text-align: center;">
<h3>LIBRARY HOURS</h3>
</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="3"></td>
</tr>
<tr>
<td>Monday to Friday</td>
<td>8:00 a.m. to 12:30 a.m.</td>
</tr>
<tr>
<td>Saturday and Sunday</td>
<td>8:00 a.m. to 8:00 p.m.</td>
</tr>
</tbody>
</table>
<table class="staff">
<thead>
<tr>
<th colspan="3" style="text-align: center;">
<h3>LIBRARY STAFF</h3>
</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="3"></td>
</tr>
<tr>
<td>Mr. Mahesh B L<br />Librarian </td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<?php include('footer.php') ?>
<!-- Made by Vinit Shahdeo -->