JSFiddle - React, Tailwind, and code Playground

by Marcelo Aymone

HTML

<button type="button" onClick="someFunction()">button</button>

<button type="submit">submit</button><br>

<a href="#" onClick="return false;">Return false</a><br>

<a href='#'>Anchor link</a><br>

<span class="fake-link" id="fake-link-1">Am I a link?</span><br>

<a href='http://someurl.com'>Normal Link</a>

CSS

.fake-link {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}