#!/usr/bin/python3
###################################################################################
# print hello world
# This script can be run as a web page
###################################################################################
print("Content-Type: text/html \n")     #http header with newline char (required for web)

print("<h3>Hello World!")       
print("That's it</h3>")

print("<p>The rest of the page</p>") 
print("<p>blah, blah, blah</p>") 


#=== link to see the python code =================================================
import os, sys
sys.path.insert(0,'/home/s/sultans/web/python/demo')
import zCode                          #import func to display the Python code
filename = os.path.abspath(__file__)  #get absolute file name 
zCode.display(filename)               #call it
#=================================================================================