<!DOCTYPE html>
<html>
<head>
<title>My Simple HTML Page</title>
</head>
<body>
<h1>My Headline</h1>
<p class="author">Me</p>
<p>This is the body of the text.</p>
<p>Consider this data:</p>
<table>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
<tr>
<td>John</td>
<td>25</td>
</tr>
<tr>
<td>Mary</td>
<td>26</td>
</tr>
</table>
</body>
</html>