20 lines
331 B
HTML
20 lines
331 B
HTML
<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>
|