RetroZilla/parser/htmlparser/tests/html/form002.html
2015-10-20 23:03:22 -04:00

23 lines
579 B
HTML

<html>
<head>
<title>test DEL tag</title>
</head>
<body>
test Form <br>
Forms cannot be nested. form tags outside form are ignored.
<form action="http://alchemy/foo">
Please input user name <input name=uid >
<input type="submit">
<form action="http://alchemy/bar">
inner open tag ignored.
Please input password <input name=pass >
<input type="submit">
</form>
form terminated by inner end tag.
input 3<input name=name3 >
</form>
The outer end tag ignored.
<br>2normal text in body line 2.
</body>
</html>