Wish/index.html

53 lines
1.2 KiB
HTML
Raw Permalink Normal View History

2013-07-20 18:16:12 +00:00
<!DOCTYPE html>
2013-07-20 14:09:10 +00:00
<html>
<head>
<style>
@font-face {
font-family: dejavu;
font-style: normal;
font-weight: normal;
src:url('DejaVuSansMono.ttf') format('truetype');
}
2013-07-20 14:09:10 +00:00
table {
border: 1px solid #fff;
background-color: #000;
2014-05-23 21:19:39 +00:00
border-collapse: seperate;
border-spacing: 0px 0px;
2013-07-20 14:09:10 +00:00
}
tr {
}
td {
min-width: 6px;
max-width: 6px;
2014-05-23 21:19:39 +00:00
overflow: visible;
2013-07-20 14:09:10 +00:00
text-align: center;
height: 20px;
2013-07-20 14:09:10 +00:00
color: #fff;
font-family: dejavu;
2014-05-23 21:19:39 +00:00
border: 1px solid #000;
2013-07-20 14:09:10 +00:00
}
#input {
z-index: -10;
position: absolute;
top: 10px;
}
#output {
z-index: 1000;
}
</style>
<script src="Emulator.js"></script>
<script src="KeyCodes.js"></script>
<script src="BIOS.js"></script>
<script src="main.js"></script>
</head>
<body onload="main()">
<div id="output"></div>
<input type="button" onclick="powerOn()" value="Power Button" />
<input type="button" onclick="window.clearInterval(Emulator.mainTickId)" value="clear system timer" />
<a href="https://github.com/overflowerror/Wish">GitHub repo</a>
2013-07-20 14:09:10 +00:00
<form id="form" name="form" onsubmit="return false;">
<input type="text" name="input" id="input" />
</form>
</body>
</html>