content = """
At ZIInteriors, we envision a world where spaces are more than just physical structures; they are living, breathing reflections of the people who inhabit them. We aim to become the most preferred partners in interior design industry by creating functional, sustainable homes and offices, delivering projects with highest quality standards while maintaining outstanding relationships with our teams and clients.
"""
# Keywords and their corresponding links
keywords = {
"Interior design company
}
# Function to linkify the content
def linkify_content(content, keywords):
for keyword, url in keywords.items():
link = f'<a href="{url}" target="_blank">{keyword}</a>'
content = content.replace(keyword, link)
return content
# Apply the function to the content
linked_content = linkify_content(content, keywords)
# Print the resulting content with the link
print(linked_content)