<html>
<head>
<title>Headline Tags </title>
</head>
<body>
<h1>Level One </h1>
<h2>Level Two </h2>
<h3>Level Three </h3>
<h4>Level Four </h4>
<h5>Level Five </h5>
<h6>Level Six </h6>
</body>
</html>
Click on the window containing your HTML source. Change the title and insert a few of the headline tags shown above. Save your changes.
Click on the experimental window and view your HTML document. You now know how to create headlines in an HTML document.
| The Tag | Meaning of Tag |
| <b> and </b> Tags | Makes text bold |
| <i> and </i> Tags | Italicizes text |
<html>
<head>
<title>Type Styles </title>
</head>
<body>
<i>Italicized </i>
<b>Bold</b>
<h4> <i>Level Four and Italicized </i> </h4>
</body>
</html>
| The Tag | Meaning of Tag |
| <p> and </p> Tag | The paragraph tag indicates where a paragraph will start and end |
| <br> Tag | The break tag puts a line break wherever you insert it. Observe that there is no closing tag |
<html>
<head>
<title>Line Breaks and Paragraphs </title>
</head>
<body>
<i>Italicized </i>
<br>
<br>
<b>Bold</b>
<p>
This is the start of a very
small paragraph.
</p>
</body>
</html>
Click on the window that contains your HTML document.
<html>
<head>
<title>Colors</title>
</head>
<body>
<font color=#FF00FF>
The color of this text is magenta.
</font>
<br>
<br>
<font color=#FFFF00>
The color of this text is yellow.
</font>
<br>
<br>
The color of this text is black
</body>
</html>
Click on the window that contains your HTML document and change the color of some text. Save your changes, and view it through Internet Explorer.