[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
HTMLSPEC-LABEL
Used to specify additional information about a form input control.
Attributes
Specifies a character to be used as a keyboard shortcut for the input control.
Specifies that the input control be disabled.
Associates the label with a form input control using the id name of the form control.
Live Example
HTML Tags Center
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
HTMLSPEC-LABEL
Label
UsageUsed to specify additional information about a form input control.
Attributes
accesskey=""
Specifies a character to be used as a keyboard shortcut for the input control.
disabled
Specifies that the input control be disabled.
for=""
Associates the label with a form input control using the id name of the form control.
Live Example
<html> <head><title>Label Form Control Document Example</title></head> <body> <form method="post" action="http://www.this.com/bin/processForm.php"> <fieldset> <label for="box1">Example Box 1</label> <input type="text" name="box1" value="box1"> <input type="text" name="box2" value="box2"> <input type="text" name="box3" value="box3"> </fieldset> </form> </body> </html>
HTML Tags Center
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
