Help for this page

Select Code to Download


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