A snippet of code we're going to be using for a particular page.
<!DOCTYPE html>
<html>
<head>
<title>Life on Enceladus</title>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 5px;
text-align: left;
}
</style>
</head>
<body>
<h2>Hypothetical Life on Enceladus</h2>
<table>
<tr>
<th>Category</th>
<th>Description</th>
</tr>
<tr>
<td>Environmental Conditions</td>
<td>Cold, icy surface with subsurface ocean</td>
</tr>
<tr>
<td>Hypothetical Life Forms</td>
<td>Microbial life, extremophiles</td>
</tr>
<tr>
<td>Water Presence</td>
<td>Subsurface salty ocean</td>
</tr>
<tr>
<td>Energy Sources</td>
<td>Hydrothermal vents, chemical reactions</td>
</tr>
<tr>
<td>Atmosphere</td>
<td>Thin, primarily composed of water vapor, nitrogen, and carbon dioxide</td>
</tr>
</table>
</body>
</html>