Different Worlds: An Introduction to HTML

Appendix A: Example Files

FILE2.HTML : Heading sizes

Copy and paste, or type, the HTML code shown below into your text editor, and save it as "file2.html":

<html>
<head>
<title>(file2.html) Heading sizes</title>
</head>
<body>
<h1>Level 1 heading &lt;h1&gt;</h1>
<h2>Level 2 heading &lt;h2&gt;</h2>
<h3>Level 3 heading &lt;h3&gt;</h3>
<h4>Level 4 heading &lt;h4&gt;</h4>
<h5>Level 5 heading &lt;h5&gt;</h5>
<h6>Level 6 heading &lt;h6&gt;</h6>
<p>Body text at default size &lt;p&gt;</p>
</body>
</html>

Alternatively, this link leads to a copy of this file, already created for you.

Return to the tutorial or return to the list of example files.


Valid HTML 4.01

http://www.users.zetnet.co.uk/dms/htmlguide/app-a02.html
© 1998-2001 Donna Smillie <dms@zetnet.co.uk>