How to control line spacing in HTML, no CSS allowed?

cinders

New member
The <br> and <p> elements don't cut it. I need to control the spacing between my lines, and I can't use a style sheet. Trust me, I would love to.
 
This isn't giving you "control" but it will provide you more space.

<p>nbsp;</p><p>nbsp;</p>

Two such as above gives a lot of space. One half of course.

Or, try this:

<font size="+3">
<p>nbsp;</p><p>nbsp;</p>
</font>

Vary the font size to provide different spacing.

Enter a "&" without the quote marks before the "nbsp;" in each case.
 
This isn't giving you "control" but it will provide you more space.

<p>nbsp;</p><p>nbsp;</p>

Two such as above gives a lot of space. One half of course.

Or, try this:

<font size="+3">
<p>nbsp;</p><p>nbsp;</p>
</font>

Vary the font size to provide different spacing.

Enter a "&" without the quote marks before the "nbsp;" in each case.
 
This isn't giving you "control" but it will provide you more space.

<p>nbsp;</p><p>nbsp;</p>

Two such as above gives a lot of space. One half of course.

Or, try this:

<font size="+3">
<p>nbsp;</p><p>nbsp;</p>
</font>

Vary the font size to provide different spacing.

Enter a "&" without the quote marks before the "nbsp;" in each case.
 
Back
Top