#!/bin/sh

echo Content-type: text/html
echo

echo "<html>"
echo "<head>Hello World Script</head>"
echo "<body>"

echo "<p>"
echo "<i>Hello, world!</i>"
echo "</p>"

echo "</body>"
echo "</html>"

