-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (65 loc) · 2.62 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<html>
<head>
<title>Rock Paper Scissors</title>
<link rel="stylesheet" type="text/css" href="./styles/game-ui.css">
<link href="https://fonts.googleapis.com/css2?family=Bungee+Inline&display=swap" rel="stylesheet">
</head>
<body>
<div id="layout-container">
<div id="game-title"><h1 id="title">Rock Paper Scissors</h1></div>
<div id="winner-display-container">
<h2 id="winner-display"></h2>
</div>
<div id="game-input-container">
<div id="img-container">
<div id="rock">
<img id="rock-button" src="images/rock.png" class="image-size" alt="rock">
</div>
<div id="paper">
<img id="paper-button" src="images/paper.png" class="image-size" alt="paper">
</div>
<div id="scissors">
<img id="scissors-button" src="images/scissors.png" class="image-size" alt="scissors">
</div>
</div>
<div id= "input-container">
<div class="button">
<h3>Rock</h3>
</div>
<div class ="button">
<h3>Paper</h3>
</div>
<div class="button">
<h3>Scissors</h3>
</div>
</div>
<div score id=score-display-container>
<div id="score-container">
<div class="score-formatting">
<h1>Player Score</h1>
<h2 id="player-score">Score: 0</h2>
</div>
<div class="score-formatting">
<h1 >Computer Score</h1>
<h2 id="computer-score">Score: 0</h2>
</div>
</div>
<div id="hands-selected-display">
<div id="player-hand-container" class="hand-chosen-container">
<div class="hand-chosen-image-container">
<img id="player-hand-chosen" class="hand-chosen-image">
</div>
<h4>Player Chose:</h4>
</div>
<div id="computer-hand-container" class="hand-chosen-container">
<div class="hand-chosen-image-container">
<img id="computer-hand-chosen" class="hand-chosen-image">
</div>
<h4>Computer Chose:</h4>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="scripts/rock-paper-scissors.js"></script>
</body>
</html>