HTM11


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:

HTM11. IT Learning

Visual Guide to Learning Computers

Visual Guide to Fundamentals of Computers is the latest and up to date educational tool in studying computers. It is presented with full illustration for the students to easily understand the technology that they are studying.



..Back to the top..



SOURCE CODE:



<HTML>
<HEAD>
<TITLE>HTM11. IT Learning</TITLE>
</HEAD>
<BODY>
<H3 ALIGN=center>Visual Guide to Learning Computers</H3>
<P ALIGN=justify>Visual Guide to Fundamentals of Computers is the latest and up to date educational tool in studying computers. It is presented with full illustration for the students to easily understand the technology that they are studying.</P>
</BODY>
</HTML>


..Back to the top..