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