28 lines
738 B
HTML
28 lines
738 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Cells</title>
|
|
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="description" content="Cells">
|
|
|
|
<style>
|
|
html, body {
|
|
height: 100%;
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
</style>
|
|
|
|
<script src="node_modules/p5/lib/p5.min.js"></script>
|
|
<script src="src/app.ts"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div style="position: absolute; top: 0; left: 0; width: 20%; height: 20%;"></div>
|
|
</body>
|
|
</html>
|