Files
base/index.html

44 lines
809 B
HTML

<!doctype html>
<html lang="en">
<head>
<title>Grid Demo</title>
<meta name="viewport" content="width=device-width">
<meta charset="utf-8">
<style type="text/css">
table {
border: 1px solid black;
}
tr {
border: 1px solid black;
}
td {
border: 1px solid black;
}
td.hidden {
background-color: #f88;
}
td.visible {
background-color: #8f8;
}
</style>
</head>
<body>
<fieldset>
<legend title="asdf">Grid</legend>
<div id="output"></div>
</fieldset>
<section>
<button id="btnLeft">Left</button>
<button id="btnUp">Up</button>
<button id="btnDown">Down</button>
<button id="btnRight">Right</button>
</section>
<section>
<button id="btnStart">Start</button>
<button id="btnRedraw">Redraw</button>
</section>
<script src="main.js"></script>
</body>
</html>