-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrockpaperscissors.html
More file actions
43 lines (40 loc) · 1.21 KB
/
rockpaperscissors.html
File metadata and controls
43 lines (40 loc) · 1.21 KB
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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Rock Paper Scissors</title>
<link rel="stylesheet" type="text/css" href="rockpaperscissors.css">
</head>
<body>
<div class="wrapper clearfix">
<div class="game clearfix">
<div class="computer">
<h2>Computer</h2>
<hr />
<img class="handshake" src="left.png">
<img class="left rock" src="rock.png">
<img class="left paper" src="paper.png">
<img class="left scissors" src="scissors.png">
</div>
<div class="choose">
<h2>Choose Your Weapon</h2>
</div>
<div class="you">
<h2>You</h2>
<hr />
<img class="handshake" src="right.png">
<img class="right rock" src="rock.png">
<img class="right paper" src="paper.png">
<img class="right scissors" src="scissors.png">
</div>
</div>
<div class="buttons clearfix">
<button id="rock">Rock</button>
<button id="paper">Paper</button>
<button id="scissors">Scissors</button>
</div>
</div>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.js"></script>
<script type="text/javascript" src="rockpaperscissors.js"></script>
</body>
</html>