kaboom/index.html
2023-02-03 21:49:56 +01:00

22 lines
494 B
HTML

<html>
<head>
<title>Twists and Shapes and Turns</title>
<style>
html,
body {
background: black;
color: white;
}
</style>
<script src="./node_modules/matter-js/build/matter.min.js"></script>
</head>
<body>
<h1>Hello Kahel!</h1>
<button onclick="kaboom()">Kaboom!</button>
<button onclick="addShape()">Add Shape!</button>
<hr />
<br />
<div id="canvas"></div>
<script src="index.js"></script>
</body>
</html>