HTML
Welcome to your first LiveCode Website!
LiveCode is a online code editor for html,css,js, the code may look messy in the tabs but whatever. For a example of what you can make, heres a simple button game:
Click For Cash
Cash:
0
CSS
*{ font-family: consolas; user-select: none; } button{ background-color: black; color: white; cursor: pointer; }
JS
var btn = document.getElementById('btn') var money = 0 var spanM = document.getElementById('m') btn.onclick = function() { money += 1 spanM.innerHTML = money; }
Output