if you want to know how you can make html with no wrap, meaing it doesnt go to the next line, you can use the nowrap.

for example, i have a table, and on my cell i dont want it to wrap (nowarp) the text. this is how i would write the html code:

<table>
  <tr>
    <td nowrap>this text will no wrap around within this table</td>
  </tr>
</table>


hope this helps