#!/usr/bin/python3
###################################################################################
# display an html table
###################################################################################
print("Content-Type: text/html \n")      #http header with newline char (required for the web)

print('''
    <html>
    <body>
    <table border=1 style=background-color:lightyellow>
        <tr style=background-color:tan>
            <th>ID<th>Firstname<th>Lastname<th>Sex</tr>
        <tr><td>1<td>Barbara<td>Burns<td>F</tr>
        <tr><td>2<td>Vincent<td>Cambria<td>M</tr>
        <tr><td>3<td>Davidson<td>Duncan<td>M</tr>
        <tr><td>4<td>Smith<td>David<td>M</tr>
        <tr><td>5<td>Eugene<td>Thomas<td>M</tr>
        <tr><td>6<td>Cynthia<td>Owens<td>F</tr>
    </table>
    </body>
    </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
#=================================================================================