How can I make a button open a link in a new browser window?

Hi! I am trying to get this button to open its link (social media handle) in a new browser page instead of redirecting it off the site.

I am using the “Refresh” template.

Thanks!

Becca

To make a button open a link in a new browser page instead of redirecting off the site in the “Refresh” template, you can add the target="_blank" attribute to the HTML code of the button. Here’s an example:

[Button Text](https://your-social-media-link)

Replace [https://your-social-media-link](https://your-social-media-link) with the actual link to your social media handle, and your-button-class with the class name or any additional styling you have for the button.

By adding target="_blank", the link will open in a new browser tab or window, allowing users to keep your site open while visiting the social media page.