-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (27 loc) · 891 Bytes
/
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
<!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>Stone Paper and Scissors</title>
<link rel="stylesheet" href="style.css">
<h1>Stone Paper and Scissors</h1>
</head>
<body>
<div class="container">
<input type="image" class="btn" id="Stone" src="rock.png">
<input type="image" class="btn" id="Paper" src="paper.png">
<input type="image" class="btn" id="Scissor" src="scissors.png">
</div>
<div id="scorecard" class="center">
<button id="start" class="bt">Start New Game</button>
<h2 id="match">
</h2>
<h2 id="final">
</h2>
</div>
</div>
<script src="index.js"></script>
</body>
</html>