def generate_contact_us_page(company_name, company_address, company_email, company_phone):
html_content = f"""
Contact Us - {company_name}
Contact Us
Feel free to reach out to us using the form below or contact us directly.
Contact Information:
{company_name}
{company_address}
Email: {company_email}
Phone: {company_phone}
"""
with open("contact_us_page.html", "w") as file:
file.write(html_content)
if __name__ == "__main__":
company_name = input("Enter your company name: ")
company_address = input("Enter your company address: ")
company_email = input("Enter your company email: ")
company_phone = input("Enter your company phone number: ")
generate_contact_us_page(company_name, company_address, company_email, company_phone)
print("Contact Us page generated successfully. Check the 'contact_us_page.html' file.")