<!DOCTYPE html>
<html>
<head>
<title>Click Game</title>
<style>
body {
font-family: Arial;
text-align: center;
background: #111;
color: white;
padding: 50px;
}
button {
font-size: 20px;
padding: 15px 30px;
margin-top: 20px;
cursor: pointer;
}
</style>
</head>
<body>
<h1>Click Game 🎮</h1>
<p>Score: <span id="score">0</span></p>
<button onclick="clickGame()">CLICK ME</button>
<script>
let score = 0;
function clickGame() {
score++;
document.getElementById("score").innerText = score;
}
</script>
</body>
</html>\0 views