-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 889 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
<!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 / SCISSORS / LIZARD / SPOCK game</title>
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="game.js" defer></script>
</head>
<body>
<div class="choices">
<button id="rock" class="choice">ROCK</button>
<button id="paper" class="choice">PAPER</button>
<button id="scissors" class="choice">SCISSORS</button>
<button id="lizard" class="choice">LIZARD</button>
<button id="spock" class="choice">SPOCK</button>
</div>
<div class="result">
<p class="conclusion"></p>
<p class="score"></p>
</div>
<button class="reset" disabled>RESET GAME</button>
</body>
</html>