Forum Moderators: not2easy
Use a definition list for each group of names.
Style the lists with CSS. You can float them to give a column effect, you can even add borders, shading etc.
Try this:
<style type="text/css">
dl {
float: left;
margin: 10px;
padding: 10px;
border: 1px solid #999999;
}
dt {
font-weight: bold;
}
</style>
<dl>
<dt>Class 6</dt>
<dd>Joe Bloggs</dd>
<dd>Bill Brown</dd>
<dd>Jill Green</dd>
</dl>
<dl>
<dt>Class 7</dt>
<dd>Mick Smith</dd>
<dd>Ed Jones</dd>
<dd>Fay White</dd>
</dl>