HTM04


Description

Output

Source Code









Description

This html show`s the alighment of sentence and also the H1 - H6 The sentence in H1 is big but in h6 the sentence is too small





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. Heading tags Web pages</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>

BACK