Rock Paper Scissors HTML
<body>
<h1>Stone Paper Scissor</h1>
<div class="scoreboard">
<span id="user-score">You: 0</span>
<span id="computer-score">Computer: 0</span>
</div>
<div class="choices">
<button class="choice-btn" data-choice="stone">🪨 Stone</button>
<button class="choice-btn" data-choice="paper">📄 Paper</button>
<button class="choice-btn" data-choice="scissor">✂️ Scissor</button>
</div>
<div class="result" id="result">Make your move!</div>
<button class="reset-btn" id="reset-btn">Reset</button>
</body>
Public Last updated: 2026-08-25 08:46:23 AM
