ayco.io-flask/static/index.html

26 lines
686 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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>