1<!DOCTYPE html PUBLIC "-//IETF//DTD HTML 3.0//EN"> 2<HTML> 3<HEAD> 4<TITLE>Examples of "Bad HTML" per Lynx</TITLE> 5<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"> 6<LINK REV="made" HREF="mailto:lynx-dev@nongnu.org"> 7<LINK REV="owner" HREF="http://mail.gnu.org/mailman/listinfo/lynx-dev/"> 8</HEAD> 9 10<BODY> 11<h2>Unterminated TEXTAREA</h2> 12<form action="http://localhost/cgi-bin/bogus-parms" method="get"> 13<textarea name="50cols" cols="50" rows=3> 14This is not empty. 15</textarea> 16<br> 17<textarea name="50percent" cols="50%" rows=3> 18This seems to have a button. 19<button>Button 1</button> 20</textarea> 21<hr> 22<input type="submit" value="Submit this form"> 23<br> 24<input type="reset" value="Reset this form"> 25</form> 26 27<h2>Unterminated SELECT</h2> 28<select> 29<option>first option</option> 30<option>second option</option> 31<option>third option</option> 32</notselect> 33<br> 34<select> 35<option>first option</option> 36<option>second option</option> 37<option>third option</option> 38</select> 39 40<h2>OPTION not within SELECT</h2> 41<option>third option</option> 42 43<h2>TEXTAREA ending without starting</h2> 44</textarea> 45 46</BODY> 47