I want to include the following HTML meta tag into a cgi script:
<meta name="googlebot" content="noindex,nofollow,noarchive,noodp,nosnippet" />
But why this doesn’t print out the result?
use CGI;
print
$query->start_html(-title =>'MyWeb',
-meta => {
-name =>'googlebot',
-content =>'noindex,nofollow,noarchive,noodp,nosnippet'}
),p;
What’s the correct way to do it?
1 Answer