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.
30 lines
966 B
30 lines
966 B
|
4 years ago
|
<html>
|
||
|
|
<style type="text/css" media="screen">
|
||
|
|
canvas {
|
||
|
|
width: 800px;
|
||
|
|
height: 600px;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
<head>
|
||
|
|
<title>Word 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>Word Munchers</h3>
|
||
|
|
<p>Here is the video game “Word Munchers”! Released in 1990 on DOS, it's still available and playable with some tinkering. It's an action and educational game, set in a reading / writing theme and it was released on Apple II as well.</p>
|
||
|
|
</body>
|
||
|
|
</html>
|