BicaVM/index.html
2011-07-03 12:51:20 +01:00

41 lines
768 B
HTML

<html>
<head>
<title>JS JVM</title>
<script src="preload.js" type="text/javascript"></script>
<script>
write = function(msg){
var l = document.getElementById("log");
l.innerHTML = l.innerHTML + msg + "\n";
}
</script>
<script src="main.js" type="text/javascript"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style>
body{
background:#DDE1ED;
font-family:Arial;
font-size:12px;
}
#background{
background:#DDE1ED;
}
#stick textarea{
margin-top:20px;
height:180px;
width:200px;
background:#FFCC00;
}
.ui-dialog-title{
padding-left:40px;
}
</style>
</head>
<body onload="main()">
<h1>JS JVM</h1>
Debug:
<pre id="log"></pre>
</body>
</html>