use HTMLTag; my $link = new HTMLTag; $link->tag('a'); $link->val('img.jpg'); $link->extra('A picture of my dog'); my $image = new HTMLTag; $image->tag('img'); $image->val('img2.jpg'); $image->extra('My cat'); print $link->str(),$image->str();