-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPage1.html
More file actions
44 lines (36 loc) · 997 Bytes
/
Page1.html
File metadata and controls
44 lines (36 loc) · 997 Bytes
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
<html>
<head> <center> <h1>Library Management System</h1> </center>
<link rel="stylesheet" type="text/css" href="style.css">
<title> Library Management System </title>
</head>
<body>
<div id="header">
<center><table>
<tr>
<td></td>
<td><h1><a href="search.php"> Search & Availability </a></h1></td>
<br><br>
</tr>
<tr>
<td></td>
<td><h1><a href="checkIn_checkOut.php">Check-Out </a></h1></td>
<br><br>
</tr>
<tr>
<td></td>
<td><h1><a href="checkIn.php"> Check-In </a></h1></td>
<br><br>
</tr>
<tr>
<td></td>
<td><h1><a href="fines.php">Fines & Payment </a></h1></td>
<br><br>
</tr>
<tr>
<td></td>
<td><h1><a href="add_user.php"> New User </a></h1></td>
</tr>
</table></center>
</div>
</body>
</html>