-
-
Notifications
You must be signed in to change notification settings - Fork 120
/
index.html
46 lines (37 loc) · 1.36 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
34
35
36
37
38
39
40
41
42
43
44
45
46
<!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 Scissor Game</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="page-container">
<h2 class="heading">Rock Paper Scissor Game</h2>
<div class="container">
<div class="game-box">
<div class="player-chosen">
<img src="./images/4.png" alt="" id="player-choice">
<h4>You Chose: <span id="playerMove"></span></h4>
</div>
<div class="computer-chosen">
<img src="./images/4.png" alt="" id="computer-choice">
<h4>Computer Chose: <span id="computerMove"></span> </h4>
</div>
</div>
<div class="result" id="result"></div>
</div>
<div class="choose-box">
<h2 class="text-head">Choose your move</h2>
<div class="options">
<img src="./images/1.png" alt="" id="move1">
<img src="./images/2.png" alt="" id="move2">
<img src="./images/3.png" alt="" id="move3">
</div>
</div>
</div>
<script src="./app.js"></script>
</body>
</html>