-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (39 loc) · 1.12 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
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rock, Paper, Scissors</title>
<link rel="stylesheet" href="assets/css/style.css">
<script src="https://kit.fontawesome.com/e199bfa2d2.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="result">
<div class="player-label">
<h3>Player:</h3>
<h3>Computer:</h3>
</div>
<div class="choice-image">
<img id="pImage" src="" alt="">
<img id="cImage" src="" alt="">
</div>
<div class="score-container">
<p id="pScore"></p>
<p id="cScore"></p>
</div>
<div class="result-container">
<p id="result"></p>
</div>
<p id="message" class=""></p>
<div class="buttons">
<input id="rock" type="image" src="images/rock.png">
<input id="paper" type="image" src="images/paper.png">
<input id="scissors" type="image" src="images/scissors.png">
</div>
<div class="reset">
<button id="reset">Reset</button>
</div>
</div>
</body>
</html>
<script type="text/javascript" src="assets/javascript/script.js"></script>