You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
364 B
Perl

$title = "Reference Color";
$bodyColor = "FF0000";
$HTMLHead = "<html> <head> <title> $title </title> </head>";
$HTMLBodyColor="<body bgcolor=$bodyColor>";
$headReference = \$HTMLHead;
$bodyReference = \$HTMLBodyColor;
open (OUTFILE, ">refColor.html");
print OUTFILE <<eof;
$$headReference
$$bodyReference
<test>
</body>
</html>
eof
close(OUTFILE);