Simple Click Game body{ text-align:center; font-family:Arial; background:#222; color:white; } button{ font-size:20px; padding:15px 30px; margin-top:20px; } Click Game Score: 0 CLICK ME let score = 0; function addScore(){ score++; document.getElementById("score").innerHTML = score; }
Click Game
Score: 0
CLICK ME
<script> let score = 0; function addScore(){ score++; document.getElementById("score").innerHTML = score; } </script>