Headers:
(Optional)
•there are up to 6 types of possible headers. You will seldom use
more than 3.
•In the body section of your html Document type in <h1> or
<h2> or <h3> or <h4> to <h6>
depending on the size you want it. and type in a heading text. Close with a
</h1>, </H2,etc. tag.
•H1 is biggest H6 is smallest
•you can align the header to the "left", "right", or
"center". It defaults to "left".
•headers appear in bold Times Roman, but you can use styles to change
the font
•you can add a name anchor to your headers to link to them with
thte <a> tag
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>PONIES PONIES PONIES</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<h1>Here Is My Pony</h1>
<h5 align="center">Isn't she lovely?</h5></body>
</html>