JSFiddle - React, Tailwind, and code Playground

by hustlerinc

HTML

<div id="startGame" src="image.png" />

CSS

#startgame {width:50;height:50;background:black;}

JavaScript

var startGame = document.getElementById('startGame');

startGame.onClick = function() {
alert('Game started!'); // Execute code here.
}