Team Lead Page

I was asked to redo the team lead page for work. Currently, the code looks like:


<ul>
 <li><strong>Team 1</strong><br />
 <em>Lead:</em> Tim<br />
 <em>Backup:</em> Jim</li>
 <li><strong>Team 2/strong><br />
 <em>Lead:</em> Sam<br />
 <em>Backup:</em> Pat</li>
</ul>

I am thinking about making it a DL, but my guts says maybe no. I know putting it all in an unordered doesn’t seem correct also. Thoughts?

it’s tabular data, so use a TABLE

+--------+------+--------+
| [B][COLOR="Blue"]Team[/COLOR][/B]   | [B][COLOR="blue"]Lead[/COLOR][/B] | [B][COLOR="blue"]Backup[/COLOR][/B] | 
+--------+------+--------+
| Team 1 | Tim  | Jim    |
| Team 2 | Sam  | Pat    |
+--------+------+--------+

yeh I guess