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