Files
esop/web/esop-web.html
T

35 lines
765 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ESOP Web ref test</title>
<meta name=viewport content="width=device-width">
<style>
html, body {
margin: 0;
padding: 0;
text-align: center;
}
#C {
width: 240px;
height: auto;
image-rendering: -moz-crisp-edges;
image-rendering: -webkit-crisp-edges;
image-rendering: pixelated;
image-rendering: crisp-edges;
}
</style>
</head>
<body>
<h1>Essential Stack-Operated Phone</h1>
<canvas id=C width=84 height=48></canvas>
<div>
<input type=file id=appselect><br>
<button type=button id=apprun>Run!</button>
</div>
<script src=uxncore.js></script>
<script src=esop-ext.js></script>
<script src=esop-web-app.js></script>
</body>
</html>