2021-12-30 13:39:25 +01:00
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>Cellular automata</title>
|
|
|
|
|
<style>
|
|
|
|
|
* {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-30 14:42:10 +01:00
|
|
|
|
canvas {
|
|
|
|
|
border: solid black 5px;
|
2021-12-30 13:39:25 +01:00
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<canvas width="500" height="500" id="canvas"></canvas>
|
|
|
|
|
<script src="main.js"></script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|