Daryl,
Looks good. The reason you can't get the things to line up is that html ignores all spaces after the first one until it reaches the next character.
You can replace each of your spaces with
which is a non breakable space, or you can put the items in table format which is kind of like a spreadsheet. It is pretty easy.
1) Start the table with <table>
2) start a row with <tr>
3) Start each piece of data with <td>
4) End each piece of data with </td>
5) End each row with </tr>
6) End the table with </table>
A table with 2 rows and 3 pieces of data in each row would look like this:
<table>
<tr>
<td>Data 1 Row 1</td>
<td>Data 2 Row 1</td>
<td>Data 3 Row 1</td>
</tr>
<tr>
<td>Data 1 Row 2</td>
<td>Data 2 Row 2</td>
<td>Data 3 Row 2</td>
</tr>
</table>
Greg
|