Use Our Free Buttons for Your Web Site
In addition to our free button collection, we also provide:
Free Online Button Maker Click Here (Requires registration - Upgrade $1)
Six Button Sets with Text Click Here
Free Bullet Gallery
Free Web Graphics for headings and logos
Creating Buttons with CSS
NEW: 2 Button sets for hover color change.
Your site navigational system can be enhanced by the use of colored buttons. We provide various colors and styles for your convenience.
The code for adding text to the buttons is provided below.
Please - Do not link to the images on these pages. Copy them and upload them to your own servers. Linking to them is considered bandwidth stealing and though we won't prosecute you for it, some sites will!!
Place this code in the head section of your document.
<style type="text/css">
#button a {font-family: Arial;font-style : normal ;font-size : 10pt; font-weight :bold;text-align :center; color :#FFFFFF;text-decoration : none }
#button a:hover{ font-family: Arial;font-style : normal ;font-size : 10pt; font-weight :bold;text-align :center; color :#000000;text-decoration : none}
</style>
|
HTML - Body Section.
|
More Free Buttons
Please - Do not link to the images on these pages. Copy them and upload them to your own servers. Linking to them is considered bandwidth stealing and though we won't prosecute you for it, some sites will!!
| Rectangles | Arches | Half Round |






|






|






|
| HTML - 4 Vertical Buttons | CSS - 4 Vertical Buttons |
|
Place entire block of code in vertical navigation cell of table within your body section. Save the image in the same folder as your page.
<table width="175" cellpadding="5" cellspacing="0" border="0">
<tr align="center" valign="top">
<!--Change background color of cell to match your choice of button color.-->
<td bgcolor="#0033cc" align="center" colspan="1" rowspan="1">
<div ID="button">
<!--Change button background name to your choice of color and style-->
<table width="150" height="23" cellpadding="0" cellspacing="0" background="button-blue-blank.gif">
<tr align="center" valign="middle">
<!--Change #begin to your link destination-->
<td align="center"><a href="#begin">Home</a></td></tr></table>
<table width="150" height="23" cellpadding="0" cellspacing="0" background="button-blue-blank.gif">
<tr align="center" valign="middle">
<td align="center"><a href="#begin">Products</a></td></tr></table>
<table width="150" height="23" cellpadding="0" cellspacing="0" background="button-blue-blank.gif">
<tr align="center" valign="middle">
<td align="center"><a href="#begin">Information</a></td></tr></table>
<table width="150" height="23" cellpadding="0" cellspacing="0" background="button-blue-blank.gif">
<tr align="center" valign="middle">
<td align="center"><a href="#begin">Contact</a></td></tr></table>
</div>
</td></tr></table>
|
Place this code in head section.
<style type="text/css">
#button a{ font-family: Arial;font-style : normal ;font-size : 10pt; font-weight :bold;text-align :center; color :#FFFFFF;text-decoration : none}
#button a:hover{ font-family: Arial;font-style : normal ;font-size : 10pt; font-weight :bold;text-align :center; color :#000000;text-decoration : none}
</style>
|
| HTML - 3 Horizontal Buttons | CSS - 3 Horizontal Buttons |
|
Place entire block of code in horizontall navigation cell of table within your body section. Save the image in the same folder as your page.
<div ID="button">
<table width="450" cellpadding="0" cellspacing="0" border="0">
<tr valign="top">
<td align="center">
<!--Change button background name to your choice of color and style-->
<table width="150" height="23" cellpadding="0" cellspacing="0" background="button-green-blank.gif">
<tr align="center" valign="middle">
<!--Change #begin to your link destination-->
<td align="center"><a href="#begin">Home</a></td></tr></table>
</td>
<td align="center">
<table width="150" height="23" cellpadding="0" cellspacing="0" background="button-green-blank.gif">
<tr align="center" valign="middle">
<td align="center"><a href="#begin">About Us</a></td></tr></table>
</td>
<td align="center">
<table width="150" height="23" cellpadding="0" cellspacing="0" background="button-green-blank.gif">
<tr align="center" valign="middle">
<td align="center"><a href="#begin">Contact</a></td></tr></table>
</td></tr></table>
</div>
|
Place this code in head section.
<style type="text/css">
#button a{ font-family: Arial;font-style : normal ;font-size : 10pt; font-weight :bold;text-align :center; color :#FFFFFF;text-decoration : none}
#button a:hover{ font-family: Arial;font-style : normal ;font-size : 10pt; font-weight :bold;text-align :center; color :#000000;text-decoration : none}
</style>
|
More Instructions
To change the color of the caption on your images change the color assignment in the style setting of the head section.
- white color : #FFFFFF
- black color : #000000
- red color : #FF0000
- blue color : #0000FF
To isolate the settings for the links on your buttons, so that all hyperlinks on a page are not affected:
- Place the buttons within a division tag and give it an id.
<div ID="buttons">Button Code</div>
- Change the style selector in the head section to:
#buttons a { your declarations here}
|
|