Now, Let's Look At The Tags For A Minute

A Tag is a coded instruction written between a < Less Than sign and a > Greater Than sign. The Tags do not print to the screen when the program runs. Some Tags tell the browser what to do with the information enclosed
between the Tags. or following the Tag.
For instance the <HTML> Tag at the start of an HTML program tells
the browser that the following program is written in Hyper Text
Markup Language and the </HTML> at the end of the program
tells the browser that the HTML program is finished.
Other Tags, such as <BR> (Line Break), <HR>
(Horizontal Rule) and <P> (Paragraph) are specific instructions for that
location and do not need a closing tag </> .
As a for instance, the <BR> Tag tells the browser to go to the next line, where the
<P> Tag tells it to go to the next line. then skip a line. The <HR> Tag tells the browzer to insert a horizontal line.
Return To The Top

Now it's time for some of the extras that add a little spice to your web page.