37 lines
626 B
HTML
Executable File
37 lines
626 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>CA</title>
|
|
|
|
<style type="text/css">
|
|
#viewport {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
|
|
margin: auto;
|
|
|
|
padding: 10px;
|
|
height: 640px;
|
|
width: 900px;
|
|
}
|
|
|
|
#board {
|
|
border: 1px solid;
|
|
border-color: '#bbb';
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="viewport">
|
|
<canvas id="board" height="600" width="800"></canvas>
|
|
</div>
|
|
|
|
<script src="fplib.js"></script>
|
|
<script src="ca-fp.js"></script>
|
|
</body>
|
|
</html>
|