- or download this
<td width="48%" valign="top">
<b>SERVPRO<sup><small>®</small></sup>of Northern Alabama</b>
...
<br>
<a href='http://www.servpro.com/'>Visit their web site</a>
</td>
- or download this
my @cells = $r->look_down(
_tag => q{td},
width => q{48%},
valign => q{top},
);
- or download this
for my $cell (@cells){
- or download this
my $bold = $cell->look_down(_tag => q{b});
print $bold->as_text, qq{\n};
- or download this
for my $item ($cell->content_refs_list) {
next if ref $$item;
print $$item, qq{\n};
}
- or download this
my $link = $cell->look_down(
_tag => q{a},
);
- or download this
print $link->attr(q{href}), qq{\n\n};