HTML how to put text in front of a table ?

staticoolio

New member
In HTML I have a table... It works! But now I want to put text infront of the table.. and I do not want this text to be a part of the table.. but I Still want the text and the table to all be on the same line...

Here is the table code:

<table>
<thead>
<tr>
<th width="24" height="21">aaa</th>
<th width="24">bbb</th>
<th width="24">ccc</th>
<th width="20">ddd</th>
</tr>
</thead>
<tbody>
<tr>
<td>111</td>
<td>222</td>
<td>333</td>
<td>444</td>
</tr>
</tbody>
</table>
 
Back
Top