JSFiddle - React, Tailwind, and code Playground

HTML

<div id="result"></div>

CSS

#result{
    font-family:'arial';
    font-size:30px;
    text-align:center;
    text-shadow: 2px 2px 0px #CCC;
    padding-top:100px;
    text-transform:uppercase;
}

JavaScript

$(document).ready(function () {
    $(this).bind('keydown mousedown', function( event ) {
        var code = event.keyCode || event.which;
        $('#result').text( event.type + ' - ' + code );
    }).find('body').focus();
})