html for creating a border around text?

You will need to put your text in a table then add the border. Here's the code:

<table border="2">

<tr>
<td>A</td>
<td>B</td>
<td>C</td>
</tr>

<tr>
<td>X</td>
<td>Y</td>
<td>Z</td>
</tr>

</table>
 
Back
Top