JSFiddle - React, Tailwind, and code Playground

HTML

<form>
  <button onclick="window.open('http://google.com/', '_blank'); return false;">Button</button>
</form>

<a href="http://google.com" target="_blank">Anchor</a>

CSS

form { margin-bottom: 10px; }
a {
  background: black;
  color: white;
  padding: 5px;
  text-decoration: none;
}
a:hover { background: #333; }