mirror of
https://github.com/MrEidam/PetPet.git
synced 2026-04-17 15:43:31 +00:00
27 lines
912 B
HTML
27 lines
912 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>
|
|
<article class="cash">
|
|
<img src="../money.png" style="height: 1rem;">
|
|
<p>Money: <span id="money">0</span></p>
|
|
</article>
|
|
<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> |