HTM04

DESCRIPTION
OUTPUT
SOURCE CODE

DESCRIPTION

Heading tags Web pages










OUTPUT



HTM04. Heading tags Web pages

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



HTM04. Header Tags with ALIGN attributes and line break. <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><BR>
</BODY>
</HTML>

BACK