simponic.xyz/euler-golf/index.html

18 lines
432 B
HTML
Raw Normal View History

2023-02-23 12:15:07 -05:00
<!DOCTYPE html>
<html>
<head>
<title>Euler Golf 2</title>
2023-02-23 20:18:31 -05:00
<link rel="stylesheet" type="text/css" href="css/styles.css" />
2023-02-23 12:15:07 -05:00
</head>
<body>
2023-02-23 20:18:31 -05:00
<div class="canvas-holder">
<canvas id="canvas" width="1000" height="1000"></canvas>
</div>
2023-02-23 12:15:07 -05:00
<script src="js/cx.js"></script>
2023-02-23 20:18:31 -05:00
<script src="js/json-ds.js"></script>
2023-02-23 12:15:07 -05:00
<script src="js/sol.js"></script>
<script src="js/game.js"></script>
</body>
</html>