You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1009 B
29 lines
1009 B
<html> |
|
<style type="text/css" media="screen"> |
|
canvas { |
|
width: 800px; |
|
height: 600px; |
|
} |
|
</style> |
|
<head> |
|
<title>Number Munchers Online</title> |
|
<script src="js-dos.js"></script> |
|
</head> |
|
<body background="bg.jpg" text="white"> |
|
<canvas id="jsdos" width="800" height="600" ></canvas> |
|
<script> |
|
Dos(document.getElementById("jsdos"), { |
|
}).ready((fs, main) => { |
|
fs.extract("game.zip").then(() => { |
|
main(["-c", GAME_ARGS]) |
|
}); |
|
}); |
|
</script> |
|
<br><br><br><br><br> |
|
<center><form> |
|
<input type="button" value="Go back!" onclick="history.back()"> |
|
</form></center> |
|
<h3>Number Munchers</h3> |
|
<p>Learn basic math skills with Number Munchers. Keep your Muncher away from the Troggles by munching on multiples, factors, prime numbers, equalities, and inequalities. If you can stay away from the Troggles and earn enough points, you'll be part of the Muncher Hall of Fame.</p> |
|
</body> |
|
</html>
|
|
|