HTML Text Formatting Tutorial - Preformatted Text
Description:
How to control the spaces and line breaks in an html page.
Code:
<html>
<body>
This is normal text with spaces and
line
breaks. <br />
<pre>
This is preformatted text with spaces and
line
breaks.
</pre>
|