#!/bin/sh
echo "Content-type: text/html\n"

# our html code
echo "<html>"
echo "<head><title>Shell script CGI page</title></head>"
echo "<body>"
echo "Hello World !"
echo "</body>"
echo "</html>"


