| |
"Headings" help set off information on a Web page. Headings are part
of the "body" of a Web page and are, therefore, preceded by the "body"
tag .
Headings can be displayed in a variety of font styles, sizes, and
colors.
Every browser can handle the six basic Heading styles.
These are referred to as H1, H2, H3, H4, H5, and H6 in HTML tags.
Type the following HTML instructions in the word processing program.
Click on the "View" button to see what your Web page should look like
so far. |
 |
<HTML>
<HEAD>
<TITLE>My First Web Page</TITLE>
</HEAD>
<BODY>
<H1>This is Heading Style 1</H1>
<H2>This is Heading Style 2</H2>
<H3>This is Heading Style 3</H3>
<H4>This is Heading Style 4</H4>
<H5>This is Heading Style 5</H5>
<H6>This is Heading Style 6</H6>
</BODY>
</HTML>
|
|