forked from itscodenation/flw1-rps-20-21-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (34 loc) · 975 Bytes
/
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
36
37
38
<!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</h1>
<img src="http://www.coltnews.com/wp-content/uploads/2016/04/RPS.png" />
<h3>Please Submit Your Choice Below</h3>
<div>
<input class="input" />
<button class="play">play!</button>
</div>
<div class="choices" class="row">
<div>
<h4>User Choice</h4>
<p class="userChoice"></p>
</div>
<div>
<h4>Computer Choice</h4>
<p class="computerChoice"></p>
</div>
</div>
<div class="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>