KISS HTML
You CAN write HTML code from scratch

Arranging elements - The "Paragraph" or <P> tag


Often, it is preferred that some space be added between thoughts on a web page. This can be accomplished with the Paragraph or <P> tag.

NOTE: The HTML 4.0 regulations state that closing the <P> tag is optional. However, since <P> can have attributes, it might be a good idea to close the tag, </P>, as a matter of course. We have done this in the code below.

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

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

<BODY>
<FONT SIZE="6">
This web page belongs to Cyberperson. <BR>
</FONT>
<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>
</BODY>

</HTML>

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

  <- Previous | Next ->