Have you worked on css3 ? Are you using HTML 5 ?
There may be some other options in HTML 5, I am not aware of them. However, here is some idea on how you could use some css (gradients included :D) to button-ify your text : (This isn't everything but something to get you started). HTH
border: 1px Solid #3B7882;
border-radius:4px;
width: 90px;
height:27px;
color: #FFFFFF;
background-color: #909090;
margin: 9px 2px 0 0;
width: 4%;
height : 2%;
float: left;
border-top-left-radius: 6%;
border-top-right-radius: 6%;
padding-top: 10px;
padding-bottom: 12px;
cursor: pointer;
background: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(1, rgba(134,130,122,0)), /* Top */
color-stop(0, rgba(134,150,101,45)) /* Bottom */
);
/* for IE */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#368655E, endColorstr=#848176)";
background: -ms-linear-gradient(top left, #368655E, #848176);