http://www.perlmonks.org?node_id=1041269


in reply to Print large text into output file

Some browsers may object to the reversal of <body> and <head>.

Here's a shortened version of what you really want in the html, if you want to be close-to-compliant and want some minimal SEO:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http:/ +/www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <title>some sort of title goes here</title> <meta name="DESCRIPTION" content="This is a page to inform you about.. +.. "> <meta name="KEYWORDS" content="'phrase of more than one word', keyword +, etc... "> <script src="map2open.js" language="javascript" type="text/javascript" +> </script> <meta http-equiv="Content-Style-Type" content="text/css"> <link rel="stylesheet" type="text/css" href="tos.css"> </head> # head must close BEFORE body begins; not at the + end as in OP Line57 <body>
HTH.

If you didn't program your executable by toggling in binary, it wasn't really programming!