HTM07


BACK

DESCRIPTION

OUTPUT

SOURCE CODE






DESCRIPTION:

     Now that you can write your own Web page, give it a title and put headings on it, it�s about time to start writing paragraphs to put in some content on it. In HTML, there are tags for writing paragraphs. Yes, it�s a container tag and it is the <P>�</P>. 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.


..Back to the top..



OUTPUT:


HTM07. Paragraph sample My school is considered as one of the largest Computer Schools. My school is considered as one of the largest Computer Schools.



..Back to the top..



SOURCE CODE:



<HTML>
<HEAD>
<TITLE>HTM07. Paragraph sample</TITLE>
</HEAD>
<BODY> My school is considered as one of the largest Computer Schools.
<FONT SIZE = 4>My school </FONT><FONT SIZE = 3>is considered as one of the</FONT>
<FONT SIZE = 7>largest</FONT> <FONT SIZE = 1>Computer Schools.</FONT>
</BODY>
</HTML>


..Back to the top..