You should assign a class to the button
and in your css file (or inside a tag) use
.link-lookalike {
background: none;
border: none;
color: blue;
text-decoration: underline;
cursor: pointer;
}
this way you can assign the class to different buttons in your page (if required), and they will all get the same look.