Skip to content

Instantly share code, notes, and snippets.

@kpeltzer
Last active August 29, 2015 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kpeltzer/0d6e0d22456650f9af68 to your computer and use it in GitHub Desktop.
Save kpeltzer/0d6e0d22456650f9af68 to your computer and use it in GitHub Desktop.
RPS
<!DOCTYPE html>
<html>
<head>
<title>
</title>
<!-- Link CSS here -->
<link rel="stylesheet" href="index.css">
<!-- Link JQuery here -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- Link index.js here -->
<script src="index.js"></script>
</head>
<body>
<div class="container">
<div id="rock" class="token">ROCK</div>
<div id="paper" class="token">PAPER</div>
<div id="scissor" class="token">SCISSORS</div>
</div>
<div class="container">
<div id="message">
Click on your selection
</div>
<div id='point'>
</div>
<div>
User Points: <span id='userPoint'></span>
Ai Points: <span id='aiPoint'></span>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment