-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 1.14 KB
/
index.html
File metadata and controls
29 lines (29 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rock, Paper, Scissors Game</title>
<link rel="shortcut icon" href="#">
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Rock, Paper, Scissors Game Version 2.1</h1>
<div class="col-container">
<div class="col-1">
<div class="btn-container">
<button id = 'scissors' class = 'button'><img src="./images/scissors.png" alt=""></button>
<button id = 'rock' class = 'button'><img src="./images/rock.png" alt=""></button>
<button id = 'paper' class = 'button'><img src="./images/paper.png" alt=""></button>
</div>
<div class="results-container"></div>
</div>
<div class="col-2">
<div class="player-points"><h1>Player</h1><h1 id = "computer-h2">0</h1></div>
<div class="computer-points"><h1>PC</h1><h1 id = "player-h2">0</h1></div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>