Basic Spacing
Line Break
DescriptionThe first basic spacing tag is the Line Break which looks like <BR>. The <BR> tag moves the text down one line. Here is an example using the <BR> tag.
Code
Welcome!
<BR>
I hope you enjoy my site.
Output
Welcome!
I hope you enjoy my site.
Practice
Paragraph
DescriptionThe second basic spacing tag is the Paragraph which looks like <P>. The <P> tag moves the text down two lines, similar to starting a new paragraph. Here is an example using the <P> tag.
Code
Welcome!
<P>
I hope you enjoy my site.
Output
Welcome!

I hope you enjoy my site.

Practice
Advertisements