-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (45 loc) · 1.46 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/reset.css"></style>
<link href='https://fonts.googleapis.com/css?family=Righteous' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Poiret+One' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/style.css"></style>
<script type="text/javascript" src="js/main.js"async></script>
<link rel="icon"
type="image/ico"
href="images/favicon.ico">
<title>Rock Paper Scissors</title>
</head>
<body>
<div id="container">
<div id="hide_selection_block">
<h1>Rock Paper Scissors</h1>
<h2 id="select_weapon">select your weapon</h2>
<div id="selection_block">
<div class="icons selectable" id="rock"></div>
<div class="icons selectable" id="paper"></div>
<div class="icons selectable" id="scissors"></div>
</div>
</div>
<div id="count_down_container">
<h2 id="count_down"><h2>
<div id="loading" class="icons"></div>
</div>
<div id="play_again_box">
<div id="result_box" class="cf">
<h2 id="result"></h2>
<figure id="left">
<h3 class="result_header" id="you_header">You Picked:</h3>
<div class="icons" id="human"></div>
</figure>
<figure id="right">
<h3 class="result_header" id="computer_header">Computer Picked:</h3>
<div class="icons" id="computer"></div>
</figure>
</div>
<h2 id="play_again">Play Again</h2>
</div>
</div>
</body>
</html>