JSFiddle - React, Tailwind, and code Playground

HTML

<button onclick="onClick()">
  <span>Give me a sign</span>
</button>
<button class="beautiful" onclick="onClick()">
  <span>Hit me baby one more time</span>
</button>

CSS

.beautiful:hover {
Color:red;
}

JavaScript

window.onClick = function() {
  alert('About time');
}