Prueba con esto:
Using perl Syntax Highlighting
#!/usr/bin/perl
use CGI
;
my $CgiObj = CGI
->new();
print
$CgiObj->header(),
$CgiObj->start_html(
-head
=> $CgiObj->Link({
-rel
=> 'shortcut icon',
-href
=> '/favicon.ico',
}),
-title
=> 'titulo',
-style
=> {
-src
=> 'styles.css',
},
-script
=> {
-language
=> 'javascript',
-src
=> 'script.js',
},
),
$CgiObj->end_html()
;Coloreado en 0.002 segundos, usando
GeSHi 1.0.8.4
Cambios:
* He agregado '-' en todas las claves
* He agregado '$CgiObj->' a Link()
* He puesto una '/' delante de favicon.ico, para indicar que está al principio del sitio web, pero yo pondría todo un URL (
http://...)
Mira a ver el código que genera. A mi me sale:
- Content-Type: text/html; charset=ISO-8859-1
-
- <!DOCTYPE html
- PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" xml:lang="en-US">
- <head>
- <title>titulo</title>
- <link rel="shortcut icon" href="/favicon.ico" />
- <link rel="stylesheet" type="text/css" href="styles.css" />
- <script src="script.js" type="text/javascript"></script>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
- </head>
- <body>
-
- </body>