![]() |
![]() |
2 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
use CGI -no_xhtml;
use CGI::Carp qw( fatalsToBrowser );
my $cgi = new CGI;
print $cgi->header(-type =>'text/html'),
$cgi->start_html( -dtd => '-//W3C//DTD XHTML 1.0 Strict//EN',
-meta =>{'author' =>'Perlator'},
-title =>'Hallo Welt',
-style =>'../css/screen.css'),
1
2
3
4
5
6
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html lang="en-US"><head><title>Hallo Welt</title>
<meta name="author" content="Perlator">
<link rel="stylesheet" type="text/css" href="../css/screen.css">
</head>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="author" content="Perlator" />
<title>Startseite</title>
<link rel="stylesheet" href="css/screen.css" type="text/css" media="screen,projection" />
</head>
![]() |
![]() |
2 Einträge, 1 Seite |