HTML, you will loveit (maybe)

This document contains some text that illustrates various features of HTML. Most readers should be familiar with basic HTML tags but the publishers felt that some example materials should be included.

You have some limited control over the layout of your text. You can change the style of small text segments. Basic style controls include size changes, switch to bold and italic styles. Strike thru text is also possible
Note how you keep the last alignment set when you simply insert a break in your paragraph.

You can have horizontal rules:


of varying lengths

and thicknesses

There are a number of list formats.

A type attribute in the <ul> tag allows you to specify the form of the bullet (though you should expect variations among browsers as to actual appearance).

Numbered lists take attributes that specify numbering style and first value:

  1. a roman 8
  2. a roman 9
  3. a roman 10
  4. a roman 11
  5. imagine the fun of doing long division with roman style numbers.

You can include preformatted text:

<table border>
<caption>Results for Sorcery 121</caption>
<tr>
	<td colspan=2 rowspan=2>
	</td>
	<th colspan=2 align=center>Examination</th>
</tr>
<tr>
	<th>Fail</th>
	<th>Pass</th>
</tr>
<tr align=center>
	<th rowspan=2>Practical</th>
	<th>Fail</th>
	<td>35</td>
	<td>3</td>
</tr>
<tr align=center>
	<th>Pass</th>
	<td>29</td>
	<td>163</td>
</tr>
</table>