homework2/index.html
2025-03-10 14:36:34 +09:00

29 lines
702 B
HTML

<!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>