JustPaste
HomeCategoriesAboutDonateContactTerms of UsePrivacy Policy
JustPaste

Free online notepad — write and share instantly

Navigate

  • Home
  • Timeline
  • Categories

Info

  • About
  • Donate
  • Contact

Legal

  • Terms of Use
  • Privacy Policy

© 2026 JustPaste.app. All rights reserved.

Made with ♥ by JustPaste

Untitled Page | JustPaste.app
2 months ago0 views
💻Technology
<!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>\

← Back to timeline