Help for this page

Select Code to Download


  1. or download this
    my %meta = (
    "Author"=>"J K Rolling",
    ...
    
    <meta content="Harry Potter and the Philosopher's Stone" name="Title" 
    +/>
    <meta content="J K Rolling" name="author" />
    
  2. or download this
    my @meta = (
    ["Author"=>"J K Rolling"],
    ...
    
    <meta content="J K Rolling" name="author" />
    <meta content="Harry Potter and the Philosopher's Stone" name="Title" 
    +/>
    
  3. or download this
    for my $m ( @meta ) {
      my $m_el = HTML::Element->new('meta');
    ...
         $m_el->attr('content',$m->[1]);
         $head->push_content($m_el);
    }