HTML
|
JavaScript
Alignment
Basics
Character Codes
Colors
CSS
DIVS
Forms
Frames
Links
Lists and Bullets
Meta Tags
Multimedia
Pictures
Spacing
Tables
Text
Advanced Spacing
Basic Spacing
Basic Spacing
251
Line Break
Description
The 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
Welcome! <BR> I hope you enjoy my site.
Paragraph
Description
The 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
Welcome! <P> I hope you enjoy my site.
Advertisements