-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (31 loc) · 1.29 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Rock Paper Scissors Lizard Spock</title>
<link rel="stylesheet" href="font-awesome-4.6.3/css/font-awesome.min.css">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="trame"></div>
<div id="content">
<div id="game">
<div class="player p2"><div class="hand"></div><div class="score s2">Computer : <span>0</span></div></div>
<div class="player p1"><div class="hand"></div><div class="score s1">You: <span>0</span></div></div>
<div id="result"><div></div></div>
</div>
<div id="panel">
<ul>
<li><i class="fa fa-hand-rock-o rock fa-3x" id="rock" aria-hidden="true"></i></li>
<li><i class="fa fa-hand-paper-o paper fa-3x" id="paper" aria-hidden="true"></i></li>
<li><i class="fa fa-hand-scissors-o scissors fa-3x" id="scissors" aria-hidden="true"></i></li>
<li><i class="fa fa-hand-lizard-o lizard fa-3x" id="lizard" aria-hidden="true"></i></li>
<li><i class="fa fa-hand-spock-o spock fa-3x" id="spock" aria-hidden="true"></i></li>
</ul>
</div>
</div>
<script src="js/jquery-3.1.1.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>