Change Button to Chevron Arrow

Hi All,

I’m currently trying to implement an anchor link button on the bottom of my home page that scrolls the user to below the fold; is there a way I can style the button in order to give it a custom appearance? I’d like to change it from a button to a down-facing chevron. Any help would be greatly appreciated.

Clicking on an a-tag with this href attribute will scroll down the page until the element with id=“scroll_to_me” is in view.

<a href="#scroll_to_me">Click Me</a>

If you’d like the contents of that anchor tag to be an icon instead of “Click Me”, you can set its inner HTML to an <img> tag instead, and linking the desired image from your hubspot files’ url.

<a href="#scroll_to_me"><img src="url_of_your_img_file.svg" alt="chevron-arrow"></a>

Check this link out for more info.