23 lines
558 B
HTML
23 lines
558 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>
|
|
<button onclick="clearTheWorld()">Clear the world!</button>
|
|
<hr />
|
|
<br />
|
|
<div id="canvas"></div>
|
|
<script src="index.js"></script>
|
|
</body>
|
|
</html>
|