JSFiddle - React, Tailwind, and code Playground
by kwiliarty
HTML
<p onclick='alertMe();'>
Test
</p>
CSS
p {color: blue; font-size: 3em;}
JavaScript
function alertMe() {
alert('Me');
}
by kwiliarty
<p onclick='alertMe();'>
Test
</p>
p {color: blue; font-size: 3em;}
function alertMe() {
alert('Me');
}