invotek.net/buttons.html
Last updated 16 Jan 2025
This page covers adding our own buttons to your website, if you generously feel like linking back to our page.
These buttons are perfect if you want to link to our page from a professional or personal website.
See "Adding the code" for the recommended method of adding these buttons.
Professional buttons:
Light button: https://invotek.net/images/button6.png
Dark button: https://invotek.net/images/button7.png
Less-professional buttons:
Light button: https://invotek.net/images/button4.png
Dark button: https://invotek.net/images/button5.png
Use the following code to add these buttons to your website.
(You're welcome to host the images locally!)
<--Insert this in your HTML--> <--Change "button4" to "button6" for the professional version.--> <a href="https://invotek.net/"> <img src="https://invotek.net/images/button4.png" width="88" height="31" id="invotek-button" alt="Invotek by Tobi" title="Invotek by Tobi"> </a> /*Insert this in your CSS: this changes the image depending on system theme*/ /*Change "button5" to "button7" for the professional version.*/ @media (prefers-color-scheme: dark) { #invotek-button { content: url("https://invotek.net/images/button5.png"); } }