I have a button, when you click the button it will take you to one of my sub-sites.
The button is a child element of a a
tag. Is there a better way?
<a target='_blank' href='example.com/sub-site.html'>
<button name='link' style="cursor:pointer" class='example-style' value='example.com/sub-site'
title='Example Title>Example</button></a>
If possible, I'll prefer not to use the form
tag.
Thanks!