app.py
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
import codecs f = open('GFG.html', 'w') html_template = """ <html> <head></head> <body> <h1 style='color:red;text-align:center'>Hello world</h1> <p>Hello World! </p> </body> </html> """ f.write(html_template) f.close() file = codecs.open("GFG.html", 'r', "utf-8") print(file.read()) import webbrowser webbrowser.open("GFG.html") |