HTML Index
HTML Index
DOCTYPE html>
<html>
<head>
<title>P999 Style Game</title>
<style>
body {
text-align: center;
font-family: Arial;
background: #111;
color: white;
}
button {
padding: 15px 25px;
font-size: 18px;
margin: 10px;
cursor: pointer;
}
</style>
</head>
<body>
<button onclick="playGame()">Play</button>
<button onclick="resetGame()">Reset</button>
<script>
let score = 0;
function playGame() {
let random = [Link]([Link]() * 10) + 1;
if (random > 5) {
score += 10;
alert("You win! +" + 10);
} else {
score -= 5;
alert("You lose! -5");
}
function resetGame() {
score = 0;
[Link]("score").innerText = "Score: 0";
}
</script>
</body>
</html>