Title: Basic Spacing Tags
URL: http://www.activejump.com/e-1.shtml
Email: webmaster@activejump.com

Introduction

There are two tags that are the basic spacing tags, that nearly every web page has. In this section you will be learning how to add and use these tags on your web page.
Line Break
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.

index.html - Notepad
....<BODY>

Welcome!
<BR>
I hope you enjoy my site.

</BODY>....

My Homepage - Microsoft Internet Explorer
Welcome!
I hope you enjoy my site.



Paragraph
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.

index.html - Notepad
....<BODY>

Welcome!
<P>
I hope you enjoy my site.

</BODY>....

My Homepage - Microsoft Internet Explorer
Welcome!

I hope you enjoy my site.