cell/index.html

28 lines
738 B
HTML
Raw Permalink Normal View History

2023-01-29 08:18:58 -05:00
<!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>