forked from itscodenation/flw1-rps-20-21-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (35 loc) · 945 Bytes
/
index.html
File metadata and controls
42 lines (35 loc) · 945 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>RPS Game</title>
<!-- Link CSS here -->
<link type='text/css' rel='stylesheet' href='css/style.css' />
</head>
<body>
<div class="row">
<h1>Rock Paper Scissors Lizard Spock</h1>
<img src="RPSLS.png" class="rps">
<h3>Please Submit Your Choice Below</h3>
<div>
<input id="input">
<button id="shoot">Shoot!</button>
</div>
<div id="choices" class="row">
<div>
<h4>User Choice</h4>
<p id="userChoice"></p>
</div>
<div>
<h4>Computer Choice</h4>
<p id="computerChoice"></p>
</div>
</div>
<div id="result"></div>
</div>
<!-- Link JQuery here -->
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<!-- Link script.js here -->
<script src='js/script.js'></script>
</body>
</html>