-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (31 loc) · 1.08 KB
/
index.html
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
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="main">
<div class="images">
<img id="Rock" src="./rock.png">
<img id="Paper"src="./paper.png">
<img id="Scissors"src="./scissors.png">
<h5>rock</h5>
<h5>paper</h5>
<h5>scissors</h5>
</div>
<div class="out-main">
<div class="moves">
<button>Comp move : <span id="comp-move">---</span></button>
<button>Your move : <span id="players-move">---</span></button>
<button id="result">Make a move</button>
<button>Computer score : <span id="comp-score">0</span></button>
<button>Your score : <span id="players-score">0</span></button>
</div>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>