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:
There are a number of list formats.
Numbered lists take attributes that specify numbering style and first value:
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>