-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabbreviations_gen.php
46 lines (40 loc) · 1.43 KB
/
abbreviations_gen.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0 user-scalable=yes">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="author" content="Steve Wright">
<link rel="shortcut icon" href="favicon.ico" >
<link rel="stylesheet" type="text/css" href="wrightfamily_gen.css">
<script src="wrightfamily.js"></script>
<title>Genealogy Abbreviations</title>
</head>
<body class="site">
<?php include("includes/header.php")?>
<main class="site-content">
<h3>Genealogy Abbreviations</h3>
<table>
<tr> <th>Abbreviation</th> <th>Meaning</th></tr>
<tr> <td>ae/aet</td> <td>about the age of</td></tr>
<tr> <td>ob</td> <td>deceased</td></tr>
<tr> <td>osp</td> <td>(Latin, obiit sine prole) died without issue. </td></tr>
<tr> <td>s.p</td> <td>sine prole; without offspring died without issue (from Latin: decessit sine prole)</td></tr>
<tr> <td>uxor.</td> <td>wife, spouse, consort</td></tr>
<tr> <td></td> <td></td></tr>
<tr> <td></td> <td></td></tr>
<tr> <td></td> <td></td></tr>
<tr> <td></td> <td></td></tr>
<tr> <td></td> <td></td></tr>
<tr> <td></td> <td></td></tr>
<tr> <td></td> <td></td></tr>
<tr> <td></td> <td></td></tr>
<tr> <td></td> <td></td></tr>
<tr> <td></td> <td></td></tr>
</table>
</main>
<?php $pagemodified = filemtime(__FILE__);
include("includes/footer.php");?>
</body>
</html>