Rose::HTML::Label is a Perl object representation of the "label" HTML tag.
SYNOPSIS
my $label = Rose::HTML::Label->new(for => 'name',
contents => 'Name');
# < label for="name" >Name< /label >
print $i->html;
$i->accesskey('n');
# < label accesskey="n" for="name" >Name< /label >
print $i->xhtml;
...
Rose::HTML::Label is an object representation of the HTML tag. Yes, there really is a tag in both HTML 4.01 and XHTML 1.0. Look it up.
This class inherits from, and follows the conventions of, Rose::HTML::Object. Inherited methods that are not overridden will not be documented a second time here. See the Rose::HTML::Object documentation for more information.
Product's homepage
Requirements:
· Perl