<input type=”button” class=”button” value=”All Holidays Info” onclick=”location.href=’http://allholidaysinfo.com’” />
If you want to see hand on the mouse over on the button you should add to css to the “button” class cursor:hand; for IE and cursor:pointer; for Mozila
.button {
border:solid 1px #000000;
color:#FFFFFF;
font-weight:bold;
font-size:11px;
cursor:hand;
cursor:pointer;
}