To create a link on your website that redirects to your Studio Search Page, use the HTML <a>
and </a>
tags:
Start the Link: The
<a>
tag marks the beginning of the link.Specify the Target URL: Add your Studio Search Domain using
href="URL"
inside the<a>
tag. Example:<a href="yourstudio.search.snapizzi.com">
.Add Link Text: Place the clickable text (e.g., βhereβ) between
<a>
and</a>
.End the Link: Use
</a>
to close the link.
Example
To link to your Snapizzi Studio Search Page with the text "here," use the following HTML:
Click <a href="yourstudio.search.snapizzi.com">here</a> to go to your Studio Search Page.
This will display as: Click here to go to your Studio Search Page.