<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>
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>
<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>