Re: LABEL and/or TITLE In Forms?

> Option 1:
> <LABEL for="color">What is your favorite color?</LABEL>
> <INPUT type="text" name="color"  id="color">

Option 1a (subject to checking for broken browsers - there are rumours
that some get this wrong, although, as the default handling for unknown
elements works perfectly well, there is really no excuse):

<LABEL>What is your favourite color?
<INPUT type="text" name="colour" id="colour">
</LABEL>

Received on Thursday, 14 March 2002 02:21:27 UTC