HTML Text Formatting Tutorial - Force Line Breaks
Description:
How to control the line breaks in an html page.
Code:
<html>
<body>
This is normal text without line breaks. <br />
This is normal text with <br /> some line <br /><br /> breaks .
</body>
</html>
Play with the code:
See working example:
Explanation:
To preserve the line breaks in your text, write <br /> where you want to brake the line.
See Also:
HTML: Html, Body, Br
|