RPS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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