diff options
Diffstat (limited to 'anime.html')
-rw-r--r-- | anime.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/anime.html b/anime.html new file mode 100644 index 0000000..5c21abc --- /dev/null +++ b/anime.html @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<html> + <head> + <title>Dumb physics engine</title> + <meta name="description" content="Converts SVGs into a set of circles and use those circles for dumb collision checking"> + <link rel="stylesheet" href="style.css"> + </head> + <body> + <img src="anime.png"> + <!-- + Draw 200x200 SVGs in Inkscape with the pencil tool and a stroke width of 20 + Make sure the scale is set to 1 and that the id is set to a unique value + Also, change the stroke to currentColor so we can style the color with CSS + --> + <svg id="hiragana-ni"></svg> + <svg id="hiragana-small-ya"></svg> + <svg id="hiragana-a"></svg> + <script src="script.js"></script> + </body> +</html> |