It is difficult to enter style data without using images or javascript.
It is very easy to style inputs without using javascript or images.
using the css style for all submit buttons - input[type=submit] or use the input.submit-btn class applied to specific elements
you can style the color, border, background, indentation, position, font weight, gradients, cast shadows ... the whole amount of effects using css ...
voila sexy button -
input[type=submit] { padding:4px; color: #fff; margin-top: 10px; background-color: #e96000; border: none; background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ff6900), to(#e96000)); background: -moz-linear-gradient(25% 75% 90deg, #e96000, #ff6900); -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; }
source share