content = """
"""
# Keywords and their corresponding links
keywords = {
"Interior design company Dubai": "http://ziinteriors.com/"
}
# 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)