INTRODUCTORY HTML   Go back to the Main Menu 

Web pages consist of tags which are enclosed in "<>".
They come in pairs. The closing one needs a "/".
Heading come in different sizes. Like this.

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

The Code for this page is as follows:

<HTML>
<HEAD>
<TITLE>Exercise 1 in HTML</TITLE>
</HEAD>
<BODY>Web pages consist of tags which are enclosed in "<>".<BR>
They come in pairs. The closing one needs a "/".<BR>
Heading come in different sizes. Like this. <BR>

<H1>Heading 1</H1>
<H2>Heading 2</H2>
<H3>Heading 3</H3>
<H4>Heading 4</H4>
<H5>Heading 5</H5>
<H6>Heading 6</H6>

</BODY>
</HTML>

 Go back to the Top   Go back to the Main Menu