mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
26 lines
679 B
HTML
26 lines
679 B
HTML
|
|
<html>
|
|
<head>
|
|
<title> test filedset001.html</title>
|
|
</head>
|
|
<body>
|
|
fieldset can be nested<br>
|
|
http://www.w3.org/TR/WD-html40/interact/forms.html#edef-FIELDSET
|
|
<br>Text after form
|
|
|
|
<FORM action="..." method="post">
|
|
<FIELDSET>
|
|
<LEGEND align="top">Personal Information</LEGEND>
|
|
<FIELDSET>
|
|
<LEGEND align="top">Name</LEGEND>
|
|
Last Name: <INPUT name="personal_lastname" type="text" tabindex="1">
|
|
First Name: <INPUT name="personal_firstname" type="text" tabindex="2">
|
|
</FIELDSET>
|
|
Address: <INPUT name="personal_address" type="text" tabindex="3">
|
|
...more personal information...
|
|
</FIELDSET>
|
|
</FORM>
|
|
|
|
Text after form
|
|
</body>
|
|
</html> |