-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
30 lines (29 loc) · 1.15 KB
/
index.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Home Page</title>
<style type="text/css">
body p {
font-family: Baskerville, Palatino Linotype, Palatino, Century Schoolbook L, Times New Roman, serif;
}
body p {
font-family: Gill Sans, Gill Sans MT, Myriad Pro, DejaVu Sans Condensed, Helvetica, Arial, sans-serif;
}
.ft { font-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;
}
.ft { font-family: Gill Sans, Gill Sans MT, Myriad Pro, DejaVu Sans Condensed, Helvetica, Arial, sans-serif;
}
</style>
</head>
<body>
<table width="100%" border="1">
<tr>
<td width="19%" align="center"><p align="center" class="ft"><a href="index.php"><strong>Home</strong></a></p></td>
<td width="24%" align="center"><strong><a href="add_record.php" target="new">Add New Record</a></strong></td>
<td width="23%" align="center"><span class="ft"><strong><a href="view_records.php">View Active Records</a></strong></span></td>
<td width="34%" align="center"><span class="ft"><strong><a href="Managing_Page.php">Managing Records (edit/delete)</a></strong></span></td>
</tr>
</table>
</body>
</html>