retroforth/vm/nga-js/index.html
crc 62d551aaf5 move nga-js to new vm directory
FossilOrigin-Name: 6f388e3fb22bd159dbd5d159100a73eed215c4e51b21f74ca55f555f7cb810b5
2019-11-22 18:20:19 +00:00

31 lines
751 B
HTML

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>RETRO FORTH</title>
<link rel="stylesheet" href="style.css">
<script src="image.js"></script>
<script src="nga.js"></script>
</head>
<body onLoad='loadproject()'>
<div class='left'>
<textarea id='input' onchange='saveproject()'>
</textarea>
</div>
<div class='mid'>
<div style='border-bottom: 1px solid #FDF6E3; color: #657B83; background: #FDF6E3;'>
<button onclick='cls()'>Clear</button>
<button onclick='go()'>Go</button>
</div>
<div>
<canvas id="canvas" width="300" height="300"></canvas>
<xmp id='console'>
</xmp>
</div>
</div>
<div class='right'>
<iframe src='http://forth.works:9999'></iframe>
</div>
</body>
</html>