KISS HTML
You CAN write HTML code from scratch

Separating elements - Using the "Horizontal Rule" or <HR> tag


You might find the page more pleasing if the top of the page was separated. The easiest way to do this is with the "Horizontal Rule".

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 //EN">
<HTML>

<HEAD>
<TITLE>Cyberperson's First Web Page</TITLE>
</HEAD>

<BODY>
<CENTER>
<FONT SIZE="6">
This web page belongs to Cyberperson. <BR>
</FONT>
<P>
<HR>
<P>
<FONT SIZE="5">
I live in Los Angeles. </P> <BR>
<P>
I work for Calliope Studios. </P> <BR>
<P>
I have a dog named Remington. </P> <BR>
<P>
My hobbies are cooking and movies. </P> <BR>
</FONT>
</CENTER>
</BODY>

</HTML>

To see how this "Horizontal Rule" tag makes the web page look, click Here

Note: <HR> is another exception that has no closing tag.
The Horizontal Rule can also be manipulated. Click here to see some variations.

  <- Previous | Next ->