Line break in HTML

Aurore -  
 Picture -
Hello,
I wanted to know if it is possible to assign a specific size to a <br>?
Actually, I want to make a line break but smaller than a real line break...
I tried <font size="1"><br></font> but it doesn't take the font into account...
If anyone has an idea...
Thank you and have a good afternoon!
Aurore

2 réponses

Picture
 


 <html> <head><title>Title of my page</title></head> <body> Line 1 <br> Line 2 </body> </html> 

or as Jeff said you can take
 <table border="0" cellspacing="0" cellpadding="0"> <tr height="2"><td>line 1</td></tr> <tr><td>line 2</td></tr> </table> 
18