Link Buttons Tutorial

Getting a simple button with your referral link is super easy.

Simple one line of basic HTML code.

Replace STAR-XXXX-XXXX with your referral code.

<a href="https://robertsspaceindustries.com?referral=STAR-XXXX-XXXX" target="_blank"><button id="referralButton" type="button">STAR-XXXX-XXXX</button></a>

This button uses JavaScript and opens up more possibilities to improve user experience and capabilties.

Replace STAR-XXXX-XXXX with your referral code.

<button id="referralButton" type="button">STAR-XXXX-XXXX</button>
<script>
document.getElementById('referralButton').addEventListener('click', function() {
    window.open('https://robertsspaceindustries.com?referral=STAR-XXXX-XXXX', '_blank');
});
</script>

Read more about DOM Event Listeners here.

Use this code along with your simple or advanced button elements to create compelling styles that match your site color scheme.

Read more about how to customize CSS Buttons here.

Last updated