import os html_content = """ Coming Soon | New Project
Development in progress

Something great is
on the way

I'm currently building a production-ready experience.
The new landing page will be live soon.

""" file_path = "coming-soon.html" with open(file_path, "w") as f: f.write(html_content)