35 lines
543 B
HTML
35 lines
543 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>CellAutomata</title>
|
|
<style>
|
|
body {
|
|
background-color: rgb(32, 32, 32);
|
|
color: rgb(192, 192, 192);
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#cnvScreen {
|
|
border: none;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
box-sizing: border-box;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="divScreen">
|
|
<canvas id="cnvScreen" width="100%" height="" />
|
|
</div>
|
|
<script src="CellAutomata.js"></script>
|
|
<script>
|
|
new CellAutomata("cnvScreen");
|
|
</script>
|
|
</body>
|
|
|
|
</html> |