HTM04


DESCRIPTION :

OUTPUT :

SOURCE CODE :





DESCRIPTION :


HTM21 is of one example of headings tag web page.



OUTPUT :

This text is size H1


This text is centered and size H2


This text is right justified and size H3


This text is size H4


This text is size H5

This text is size H6



SOURCE CODE:


<Html>
<HEAD>
<TITLE>HTM04</TITLE>
</HEAD>

<BODY>
<H1> This text is size H1 </H1><BR>
<H2 ALIGN = center> This text is centered and size H2
</H2><BR>
<H3 ALIGN = right> This text is right justified and size H3
<H3><BR>
<H4> This text is size H4 </H4><BR>
<H5>This text is size H5 </H5><BR>
<H6> This text is size H6 </H6>
</BODY>

</html>

RETURN