1
2=head1 NAME
3
4HTML::DOM::Element::Head - A Perl class for representing 'head' elements in an HTML DOM tree
5
6=head1 VERSION
7
8Version 0.054
9
10=head1 SYNOPSIS
11
12  use HTML::DOM;
13  $doc = HTML::DOM->new;
14  $elem = $doc->createElement('html');
15
16  $elem->profile('http://profiles.com'); # set
17  $elem->profile;                        # get
18  $elem->tagName;
19  # etc
20
21=head1 DESCRIPTION
22
23This class implements the 'head' element in an HTML::DOM tree. It
24implements the HTMLHeadElement DOM interface and inherits from
25L<HTML::DOM::Element> (q.v.).
26
27=head1 THE METHOD
28
29The only method that this class implements itself and does not inherit is:
30
31=over 4
32
33=item profile
34
35Returns (and optionally sets) the C<profile> attribute.
36
37=back
38
39=head1 SEE ALSO
40
41L<HTML::DOM>
42
43L<HTML::DOM::Element>
44