explorata/index.html

20 lines
331 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<html>
<head>
<title>Cellular automata</title>
<style>
* {
margin: 0;
padding: 0;
}
canvas {
border: solid black 5px;
}
</style>
</head>
<body>
<canvas width="500" height="500" id="canvas"></canvas>
<script src="main.js"></script>
</body>
</html>