Headings



Let's suppose we want to add some headings to our Web page. We can do this with heading tags. They are like title tags in that there is a start and stop tag. There are a number of heading tags such as:
< H1 > < /H1 >
< H2 > < /H2 >

The smaller the number of the heading tag, the smaller it will appear on your Web page. Below is our Web page with a heading added.

< HTML >
< HEAD >
< TITLE > Butch is the Greatest Dog < /TITLE >
</HEAD > < BODY bgcolor="#ff0000" >
< H1 > Butch < /H1 >
Butch is the name of my dog.
< /BODY >
< /HTML >

Try IT




Back