-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrochambeau.html
77 lines (73 loc) · 3.41 KB
/
rochambeau.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<<!DOCTYPE html>
<html lang="en">
<head>
<title>Rochambeau2</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet " href="rochambeau.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="rochambeau.js"></script>
</head>
<body>
<audio accesskey autoplay loop>
<source src="casino.mp3" type="audio/mpeg">
</audio>
<!-- Create a Background -->
<div id="background">
<div id="box"></div>
<div class="container my-custom-container">
<div class="title">
<table class="table">
<tr>
<td><img src="bannerOne.png" alt="disable adblock" height="450" width="300"></td><td class="right"><img src="bannerTwo.png" alt="disable adblock" height="450" width="300"></td>
</tr>
<tr>
<td><img src="bannerThree.png" alt="disable adblock" height="450" width="550"></td><td class="right"><img src="bannerfour.png" alt="disable adblock" height="450" width="550"></td>
</tr>
</table>
</div>
<p class="instruction">Let's Play R,P,S,L,S! Press your choice and then press PLAY to Win Big!</p>
<div class="btn-group" role="group" aria-label="...">
<button type="button" class="btn btn-default" onclick="storePlayerChoice(0)">Rock</button>
<button type="button" class="btn btn-default" onclick="storePlayerChoice(1)">Paper</button>
<button type="button" class="btn btn-default" onclick="storePlayerChoice(2)">Scissors</button>
<button type="button" class="btn btn-default" onclick="storePlayerChoice(3)">Lizard</button>
<button type="button" class="btn btn-default" onclick="storePlayerChoice(4)">Spock</button>
</div>
<p></p>
<input type="button" onclick="displayGameResult('result'), displayScoreBoard('wins', 'losses', 'ties'), displayMatchScoreBoard('mWins', 'mLosses', 'mTies')" value="Play" class="btn btn-primary">
<p></p>
<div id="result"></div>
<div id="scoreboard">
<table class="table">
<tr>
<td>Wins:</td>
<td>Losses:</td>
<td>Ties:</td>
</tr>
<tr>
<td id="wins">0</td>
<td id="losses">0</td>
<td id="ties">0</td>
</tr>
</table>
<table class="table">
<tr>
<td>Matches Won:</td>
<td>Matches Lost:</td>
<td>Matches Tied:</td>
</tr>
<tr>
<td id="mWins">0</td>
<td id="mLosses">0</td>
<td id="mTies">0</td>
</tr>
</table>
</div>
<img src="candy.jpg" alt="disable adblock" height="450" width="1000">
</div>
</div>
</body>
</html>