commit d099470f63a976d3933bfb494c38003c7a8ee687 parent 81c914c434173e332af1ff9a0effa57d6bdcc177 Author: Yuval Langer <yuvallangerontheroad@gmail.com> Date: Fri, 3 Jul 2020 10:20:15 +0300 Now *actually* adding sokoban html file. Diffstat:
A | html/sokoban.html | | | 18 | ++++++++++++++++++ |
1 file changed, 18 insertions(+), 0 deletions(-)
diff --git a/html/sokoban.html b/html/sokoban.html @@ -0,0 +1,18 @@ +<!doctype html> +<html> + <head> + <meta charset="utf-8"> + <title>Kaka Farm Sokoban clone: no bells no whistles no glory.</title> + <script type="text/javascript" src="sokoban.js"></script> + <script type="text/javascript"> +'use strict'; + </script> + </head> + <body> + <pre id="text"></pre> + <button id="up" type="button">↑</button> + <button id="down" type="button">↓</button> + <button id="left" type="button">←</button> + <button id="right" type="button">→</button> + </body> +</html>