But why use an image when you can just create it all in just plain CSS?
HTML Code:
<style>
body {
background-color: black
}
a.btn {
padding: .25em .25em;
border: 4px double white;
font-family: Arial;
font-size: 8pt;
text-transform: uppercase;
color: white;
text-decoration: none;
display: block;
clear: both;
float: left;
width: 120px;
text-align: center
}
a.btn:hover {
color: #ddd;
border-color: #ddd
}
</style>
<body>
<a href="#" class="btn">Home</a><br>
<a href="#" class="btn">About Us</a><br>
<a href="#" class="btn">Hugo Boss</a><br>
<a href="#" class="btn">Armani</a><br>
<a href="#" class="btn">Locations</a>
</body>
Last edited by funkdaddu; 06-30-2006 at 12:45 AM..
|