=head1 NAME
HTML::DOM::Element::Title - A Perl class for representing 'title' elements in an HTML DOM tree
=head1 VERSION
Version 0.054
=head1 SYNOPSIS
use HTML::DOM;
$doc = HTML::DOM->new;
$elem = $doc->createElement('title');
$elem->text('The Perl Directory'); # set title
$elem->text; # get title
$elem->tagName;
# etc
=head1 DESCRIPTION
This class implements the 'title element in an HTML::DOM tree. It
implements the HTMLTitleElement 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 text
Returns (and optionally sets) the text of the title.
=back
=head1 SEE ALSO
L<HTML::DOM>
L<HTML::DOM::Element>
Copyright 2K16 - 2K18 Indonesian Hacker Rulez