first commit

This commit is contained in:
Andrea Bianchi
2026-03-14 12:18:27 +09:00
commit c9853c3aa3
12 changed files with 90373 additions and 0 deletions

28
index.html Normal file
View File

@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html>
<head>
<script src="js/p5.js"></script>
<script src="js/p5.dom.min.js"></script>
<script src="js/p5.sound.min.js"></script>
<link rel="stylesheet" type="text/css" href="./style.css" />
<meta charset="utf-8" />
</head>
<body>
<h1>Homework: Conway's Game of Life</h1>
<script src="main.js"></script>
<div class="footer">
<ul>
<li><b>E</b> to enter/exit edit mode</li>
<li><b>R</b> to reset the board</li>
<li>
<b>- or = or mouseScroll </b> to decrease/increase size of grid in
edit mode
</li>
<li><b>mouse drag</b> to add cells</li>
</ul>
</div>
</body>
</html>