JSFiddle - React, Tailwind, and code Playground

HTML

<input type="button" value="Input Button">
    <input type="checkbox">
    <input type="file">
    <input type="hidden">
    <input type="image">
    <input type="password">
    <input type="radio">
    <input type="submit">
    <input type="text">
    <select>
        <option>Option1</option>
        <option>Option2</option>
        <option>Option3</option>
    </select>
 
    <textarea></textarea>
    <button>Button</button>

    <span>Reset</span>

CSS

span{
    margin-top: 70px;
    display: block;
    background: #3D3D3D;
    width: 50px;
    color: #EBCDA5;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
}

JavaScript

$('span').click(function() {
  alert( "Reset" );
});