"""
new_str_2 = """
"""
content = content.replace(old_str_1, new_str_1)
content = content.replace(old_str_2, new_str_2)
with open('tmp_home.html', 'w') as f:
f.write(content)
print(f"Replacements done: {old_str_1 in content}, {old_str_2 in content}")