<!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" lang="en-nz"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>NZ_S_7_1</title></head> <body> <!--the following elements should return errors--> <p>Username: <input type="text" name="username" /></p> <p><span>Phone number</span><div><input type="text" name="phone" /></div></p> <p><div><label>Address:</label><input type="text" name="address" /></div></p> <table> <tr> <td>Country</td> <td><input type="text" name="country" /></td> </tr> </table> <p>Comments:<div><textarea>blah blah blah</textarea></div></p> <div>Country:<span><select><option>New Zealand</option></select></span></div> <!--the following elemnets should be fine--> <p><label for="password">Password:</label><input type="password" id="password" name="password" /></p> <p><label>Email: <input type="text" name="email" /></label></p> <p><input type="text" name="blank" /></p> </body> </html>