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
43 lines (35 loc) · 1.07 KB
/
index.html
File metadata and controls
43 lines (35 loc) · 1.07 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>
<title>RPS Game</title>
<!-- Link CSS here -->
<link type='text/css' rel='stylesheet' href='css/style.css' />
<link href="https://fonts.googleapis.com/css?family=Permanent+Marker" rel="stylesheet">
</head>
<body>
<div class="row">
<h1>Rock Paper Scissors</h1>
<img src="https://vignette.wikia.nocookie.net/bobobo/images/6/6a/Bo-bobo_Janken_Fortune_Teller.png/revision/latest?cb=20180122063146">
<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="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- Link script.js here -->
<script src='js/script.js'></script>
</body>
</html>