simponic.xyz/euler-golf/index.html
2023-02-23 10:15:07 -07:00

39 lines
783 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Euler Golf 2</title>
<style>
body {
margin: 0;
padding: 0;
overflow: scroll;
font-family: Lucida Console, Lucida Sans Typewriter, monaco,
Bitstream Vera Sans Mono, monospace;
}
.canvas-holder canvas {
padding: 0;
margin: auto;
display: block;
height: 70vh;
width: auto;
max-width: 100%;
}
.button {
border: 1px solid black;
border-radius: 5px;
padding: 5px;
cursor: pointer;
}
</style>
</head>
<body>
<canvas id="canvas"></canvas>
<script src="js/cx.js"></script>
<script src="js/sol.js"></script>
<script src="js/game.js"></script>
</body>
</html>