xxxxxxxxxx
25
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/addons/p5.dom.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/addons/p5.sound.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8" />
</head>
<body>
<h2>Game Instructions</h2>
<p>
Use keys 1, 2, 3 and 4 to select a quadrant. Then choose an operation, using the keys +, -, * and /. You can use addition, subtraction, multiplication and division. If you choose another quadrant after that, it will perform your operation on the two quadrants. The goal of the game is to make the number 24 when you have only one quadrant left.
</p>
<h2>Note on Quadrants</h2>
<p>
A quadrant can be one of four sections of the window. The 1st is top right, the 2nd is top left, the 3rd is bottom left and the 4th is bottom right.
</p>
<script src="sketch.js"></script>
</body>
</html>