HTM09


BACK

DESCRIPTION

OUTPUT

SOURCE CODE






DESCRIPTION:

     The <P> tag is the only tag for paragraphs. Paragraph tags are the most ubiquitous and user-friendly of all the HTML tags. Inserted at the beginning of each paragraph, the <P> tag skips a line before each block of text. There�s no need to close off the <P>; it�s implied when you go on to the next tag. It has the following attribute.

ALIGN � indicates the horizontal alignment of the paragraph. SYNTAX:

Where: value = can be LEFT, RIGHT, CENTER, or JUSTIFY.


..Back to the top..



OUTPUT:


HTM09

This is the first paragraph.

This is the second paragraph.

This is the third paragraph.




..Back to the top..



SOURCE CODE:



<HTML> <HEAD>
<TITLE>HTM09</TITLE>
</HEAD>
<BODY>
<FONT SIZE=5 FACE=arial>
<P>This is the first paragraph.</P>
<P>This is the second paragraph.</P>
<P>This is the third paragraph.</P>
</FONT>
</BODY>
</HTML>


..Back to the top..