Help for this page

Select Code to Download


  1. or download this
      use CGI qw/Link/;
    
  2. or download this
      print $q->start_html({
        -head=>Link({-rel=>'stylesheet', -type=>'text/css', -href=>'/foo.c
    +ss'}),
      });
    
  3. or download this
      print $q->start_html({
        -head=>Link([
    ...
          {-rel=>'stylesheet', -type=>'text/css', -href=>'/bar.css'},
        ]),
      });
    
  4. or download this
      print $q->start_html({
          -head=>Link({-rel=>'stylesheet', -type=>'text/css', -href=>'/foo
    +.css'})
            . Link({-rel=>'stylesheet', -type=>'text/css', -href=>'/bar.cs
    +s'}),
        });