#!/bin/sh

echo "Content-type: text/html";
echo "";

cat <<EOF
<html>
<title>
Hello World!
</title>
<body bgcolor=pink text=gray>
<center>
<HR>
<BR> <BR> <BR> <BR> <BR> <BR>
<H1>Hello World!</H1>
<BR> <BR> <BR> <BR> <BR> <BR>
<HR>
</center>
</body>
</html>
EOF
