The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

=head1 NAME

HTML::DOM::Element::Head - A Perl class for representing 'head' elements in an HTML DOM tree

=head1 SYNOPSIS

  use HTML::DOM;
  $doc = HTML::DOM->new;
  $elem = $doc->createElement('html');

  $elem->profile('http://profiles.com'); # set
  $elem->profile;                        # get
  $elem->tagName;
  # etc

=head1 DESCRIPTION

This class implements the 'head' element in an HTML::DOM tree. It 
implements the HTMLHeadElement DOM interface and inherits from 
L<HTML::DOM::Element> (q.v.).

=head1 THE METHOD

The only method that this class implements itself and does not inherit is:

=over 4

=item profile

Returns (and optionally sets) the C<profile> attribute.

=back

=head1 SEE ALSO

L<HTML::DOM>

L<HTML::DOM::Element>