
This is what the page looks like
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Language" content="en-gb" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Heading</title>
<style type="text/css">
.style1 {
border-style: solid;
border-width: 1px;
}
.style2 {
text-align: center;
}
.style3 {
font-family: Arial, Helvetica, sans-serif;
}
</style>
</head>
<body>
<h1 class="style2">Heading</h1>
<p>This is some text</p>
<p class="style3">A second paragraph using a different font</p>
<ul>
<li>this is</li>
<li>an unordered</li>
<li>list</li>
</ul>
<p>and </p>
<ol>
<li>a numbered</li>
<li>list</li>
<li>of items</li>
</ol>
<table style="width: 50%" class="style1">
<tr>
<td>this is a table</td>
<td>50% wide</td>
</tr>
<tr>
<td>with two columns</td>
<td>and two rows</td>
</tr>
</table>
<p>Here is an image<img alt="" src="smiley.gif" width="45" height="45" /> and
<a href="http://www.vle-school.co.uk">a link</a></p>
</body>
</html>