#!/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("""
    <html> 
    <body bgcolor=lightblue> 

    <h3>Hello World!</h3> 
    <p>The rest of the page</p> 
    <p>blah, blah, blah</p>
    </html>
""") 


#=== 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
#=================================================================================