|
Breaks & Spaces
<br> sends line of text DIRECTLY under the first line
<p> moves text one line under with a space between
& nbsp; a space that doesn't break to the next line
<hr> makes a line across the screen to break up lots of
text
Breaks & Spaces |
<html>
<head>
<title>Breaks & Spaces</title>
<body bgcolor=white>
Mary Had a Little Lamb, Little Lamb, Little Lamb<br>
Mary had a little lamb & nbsp; & nbsp; (two non-breaking
spaces)<p>
Now we are two lines down.
</body>
</html>
|
Mary Had a Little Lamb, Little Lamb, Little
Lamb
Mary had a little lamb (two non-breaking spaces)
Now we are two lines down.  
 
 
 
 
 
 
|
|