29 lines
576 B
HTML
29 lines
576 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Boids</title>
|
||
|
<meta charset="utf-8">
|
||
|
|
||
|
<style>
|
||
|
body, html
|
||
|
{
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
#boids-canvas
|
||
|
{
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<canvas id="boids-canvas"></canvas>
|
||
|
<script src="index.mjs" type="module"></script>
|
||
|
</body>
|
||
|
</html>
|