<div dir="ltr">hello everyone , recently i create a cgi script in python now i try to integrate a html in my script  to organize  my web page but it's not work this my html page below<br><b>con = psycopg2.connect(host="localhost", database="#########", user="postgres", password=#######, port=5432)<br>cur = con.cursor()<br>cur.execute("insert into table_1(nom) values(%s)",(name,))<br>con.commit()<br>print("content-Type: text/html")<br>print"""<br>   <!DOCTYPE html><br>   <html><br>      <head><br>          <meta charset="UTF-8"><br>      </head><br>      <body><br>          hello<br>      </body><br>   </html><br></b><div><b>"""</b></div><div>but this code not work l know the problem is not in the python script code because l tested the python code alone. but if l add a html the server sent a error. now l want to know how to integrate a html with python script .</div></div>