-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (66 loc) · 1.98 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<meta name="author" content="">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='https://fonts.googleapis.com/css?family=Bai Jamjuree' rel='stylesheet'>
<link href="styles/style.css" rel="stylesheet">
</head>
<body>
<div class="main-background">
<div class="smaller-background">
<div class="main">
<h1 class="title">Rock -- Paper -- Scissors</h1>
<div class="buttons">
<button id="rock" class="throw-button">
<img src='images/rock-icon.jpg' alt="rock-button">
</button>
<button id="paper" class="throw-button">
<img src="images/paper-icon.jpg" alt="paper-button">
</button>
<button id="scissors" class="throw-button">
<img src="images/scissors-icon.png" alt="scissors-button">
</button>
</div>
<div class="container">
<div class="grid-container">
<div id="grid-item-1" class="grid-item"> Player</div>
<div id="grid-item-2" class="grid-item"> Computer</div>
</div>
<div id="choice-container" class="grid-container">
</div>
<div id="message">
</div>
<table>
<thead>
<tr>
<th> Round </th>
<th> Player </th>
<th> Computer </th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td>--</td>
<td>--</td>
</tr>
</tbody>
<tfoot>
<tr>
<td> Score </td>
<td> 0 </td>
<td> 0 </td>
</tr>
</tfoot>
</table>
<button id="reset"> Start Over </button>
</div>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>