RetroZilla/parser/htmlparser/tests/html/fieldset001.html

22 lines
559 B
HTML
Raw Normal View History

2015-10-21 05:03:22 +02:00
<html>
<head>
<title> test filedset001.html</title>
</head>
<body>
fieldset and legend
Text after form
<FORM action="..." method="post">
Text before fieldset
<FIELDSET>
<LEGEND align="top">Personal Information</LEGEND>
Last Name: <INPUT name="personal_lastname" type="text" tabindex="1">
<br>First Name: <INPUT name="personal_firstname" type="text" tabindex="2">
<br>Address: <INPUT name="personal_address" type="text" tabindex="3">
<br>...more personal information...
</FIELDSET>
Text after fieldset
</form>
Text after form
</body>
</html>