Files
PetPet/Games/RockPaperScissors/index.html

18 lines
489 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="main.js"></script>
<title>Rock Paper Scisors</title>
</head>
<body>
<h1 id="opponent-score">0</h1>
<img id="opponent-choice" draggable="false">
<br>
<img id="your-choice" draggable="false">
<div id="choices"></div>
<h1 id="your-score">0</h1>
</body>
</html>