Clickable Buttons
Here is the code for a clickable button. It can be used to click to web pages, images, as well
as sounds. The "value" is the text on the button, in the example below the button will
display "Click Me".
Usage Notes - Clickable Buttons
Attribute:
Attribute:
Attribute:
Attribute:
Attribute:
Links To A Web Page
Html Code:
<form action="http://lambeaubear.com" method="get">
<input type="submit" value="Click Me">
</form>
Links To An Image
Html Code:
<form action="http://www.lambeaubear.com/pics/airsheep.gif" width="120" height="100"" method="get">
<input type="submit" value="Click Me">
</form>
Links To A Tune
Html Code:
<form action="http://www.lambeaubear.com/tunes/mixedblues.mid" width="120" height="100"" method="get">
<input type="submit" value="Click Me">
</form>
Adds Color To Your Button
Html Code:
<form action="http://www.lambeaubear.com" method="get">
<input style="background-color: #FF0000; color: #FFFFFF;" type="submit" value="Click Me">
</form>
Adds Background Image To Your Button
Html Code:
<form action="http://www.lambeaubear.com" method="get">
<input type="submit" style="background-image: url(http://www.lambeaubear.com/pics/bgmarbleblack.jpg);
color: #FFFFFF;" value="Click Me">
</form>