Style moved

This commit is contained in:
Andrea Bianchi
2026-03-14 12:19:26 +09:00
parent c9853c3aa3
commit 0e58b35db7
2 changed files with 25 additions and 23 deletions

View File

@@ -1,28 +1,30 @@
<!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>
<head>
<script src="js/p5.js"></script>
<script src="js/p5.dom.min.js"></script>
<script src="js/p5.sound.min.js"></script>
<body>
<h1>Homework: Conway's Game of Life</h1>
<script src="main.js"></script>
<link rel="stylesheet" type="text/css" href="./assets/style.css" />
<meta charset="utf-8" />
</head>
<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>
<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>