На кнопке можно писать.
Пример с моего сайта:
<style>
.plusButton {
display: block;
width: 256px;
height: 39px;
line-height: 36px;
background: url('../img/bluebutton_01.png') top center;
text-decoration: none;
padding: 0;
margin: 0;
text-align: center;
font-size: 19px;
color: #2a2a2a;
margin: 0 auto;
text-shadow: 0px 1px #99ffff;
font-weight: 400;
}
.plusButton:hover {
background: url('../img/bluebutton_02.png') top center;
text-decoration: none;
}
.plusButton:active {
background: url('../img/bluebutton_03.png') top center;
text-decoration: none;
}
</style>
<a class="plusButton" href="demo">Демо-версия</a>Здесь стиль для тэга A(У меня все кнопки на сайте сделаны ссылкой, обрабатываются JS). Но с таким же успехом можно и input и button оформить.