Files
PetPet/Games/RockPaperScissors/index.html
2024-08-20 22:48:32 +02:00

23 lines
767 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">
<link rel="shortcut icon" href="./icon.png" type="image/x-icon">
<script src="main.js"></script>
<title>Rock Paper Scisors</title>
</head>
<body>
<h1 id="opponent-score">0</h1>
<section>
<article class="choiBACK">
<img src="Invis.png" class="choices" id="opponent-choice" draggable="false">
<img src="Invis.png" class="choices" id="your-choice" draggable="false">
</article>
<div id="choices" draggable="false"></div>
</section>
<h1 id="your-score">0</h1>
<a href="../" id="home"></a>
</body>
</html>