<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The web site of htmlat316am</title>
<link href="/style.css" rel="stylesheet" type="text/css" media="all">
</head>
<body>
<p> <a href="https://htmlat316am.neocities.org">Home</a></p>
<h1>Tables and Lists: Data for All</h1>
<table>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;}
</style>
<caption> Frequency of Letters in the Average Email </caption>
<tr>
<th>-</th>
<th>A</th>
<th>B</th>
<th>C</th>
<th>D</th>
<th>E</th>
</tr>
<tr>
<td>1-100</td>
<td></td>
<td></td>
<td></td>
<td>X</td>
<td></td>
</tr>
<tr>
<td>101-200</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>201-300</td>
<td></td>
<td>X</td>
<td>X</td>
<td></td>
<td></td>
</tr>
<tr>
<td>301-400</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>501-600</td>
<td>X</td>
<td></td>
<td></td>
<td></td>
<td></td>
<tr>
<td>600+</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>X</td>
</tr>
<tr>
<th colspan="6">Most Frequent: E</th>
</tr>
<h3>The List<h3>
<ul style="list-style-type:disc">
<li>The table below is a rough estimate.</li>
<li>This is a simple, summative, list.</li>
<li>The unparsed code for this webpage can be found in a .HTML doc below</li>
</ul>
<h3>The Table</h3>
</body>
</html>