<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">

<title>malformed2</title>

block level tags:
<p align= center>this text is centred
<pre>pre tag (should cancel alignment)

<p align=right>this text is right aligned
<div>div tag (should cancel alignment)

<p>here's the blockquote tag:
<blockquote>They went in single file, running like hounds on a strong scent, and an
 eager light was in their eyes. Nearly due west the broad swath of the marching Orcs
 tramped its ugly slot; the sweet grass of Rohan had been bruised and blackened as
 they passed. 
<p><i>from "The Two Towers" by J.R.R. Tolkien</I>

end of blockquote tag

<p>here's the center tag:
<center>centred text</center>
end of center tag

<p>here's the headings 1-6:
<h1>h1
<h2>h2
<h3 align = center>h3 with center alignment
<h4>h4
<h5>h5
<h6>h6
end of the headings

<p>formatted text tags:
<p><b>bold normal
<p><i>italics normal
<p><u>underline normal
<p><em>emphasis normal
<p><strong>strong normal
<p><sub>subscript normal
<p><sup>superscript normal
<p><strike>strikethrough normal
<p><dfn>dfn normal
<p><var>var normal
<p><cite>cite normal
<p><i>italics <b>and bold <u>and underline just bold and italics and just italics normal

<p>here's the image tag with the alt attribute:
<img SRC="http://www.foo.com/foo.gif" ALIGN="left"
ALT="text description of image" HEIGHT=20 WIDTH=30
DYNSRC="http://www.foo.com/foo.avi" START="fileopen"
LOOP="infinite" BORDER=3>

<p>here's a table:
<table BORDER="2" ALIGN="left" CELLPADDING="5" BORDERCOLOR="#ff0000" WIDTH="75%">
<caption ALIGN="top">table caption</caption>
<tr> <th>table header row 1 <th>table header row 1
<tr> <td>table data row 2</td> <td>table data row 2</td></tr>
<tr> <td>table data row 3</td> <td>table data row 3</td></tr>
</table>

<p>unordered list:
<ul TYPE="square">
<li>unordered list item 1
<li>unordered list item 2
<li>unordered list item 3

ordered list:
<ol TYPE="A" START="3">
<li>ordered list item 1
<li>ordered list item 2
<li>ordered list item 3
</ol>

definition list:
<DL>
<DT>Term 1<dd>This is the definition of the first term.
<DT>Term 2<dd>This is the definition of the second term.
</DL>

<p>here's the form tag (contents should be ignored): 
<form METHOD="get" ACTION="http://hoohoo.ncsa.uiuc.edu/htbin/query" ENCTYPE="application/x-www-form-urlencoded">
all contents of the form tag should be ignored
<input TYPE="password" NAME="foo">

and the end of the form tag

<p>here's the A tag
<a href = "www.link.com">the link end of A tag

<p>the following tags are not recognised:
<html> html
<style> style
<script> script
<isindex> isindex
<base> base
<meta> meta
<link> link
<head> head
<body> body
<address> address
<dir> dir
<menu> menu
<input> input
<select> select
<option> option
<textarea> textarea
<img> img
<applet> applet
<font> font
<basefont> basefont
<map> map
<area> area
<tt> tt
<big> big
<small> small
<code> code
<samp> samp
<kbd> kbd

<p align = "right">new paragraph right aligned
</html>