Menu

Downloads

Links



Buttons



How doI create a button link?

Basic Button Link
This creates the most basic version of a button link, like this one.



And this is the code you would use to get this. Simply change out the information in the code for your own information.

<form method="get" action="URL HERE"><input type="submit" value="TITLE OF LINK"></form>


Coloured Button Link
And this will allow you to decorate the button a little, like this.



Inside the style tags, you can define the way the text looks, the background, add borders, margins, padding, etc. Visit the CSS pages to learn how to do that. In the meantime, here's the code.

<FORM METHOD="get" ACTION="URL HERE"><INPUT TITLE="submit" TYPE="submit" STYLE="background:#D3D3D3" VALUE="TITLE HERE"></FORM>