diff options
author | William Carroll <wpcarro@gmail.com> | 2020-04-18T12·30+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-04-18T12·30+0100 |
commit | f0803547e47827a3fb3b9fb1f89949fa270b6d8e (patch) | |
tree | 1eb84a865896fafa0c07e8c45396c5d4ffebf3ab /website/sandbox/learnpianochords/index.html | |
parent | 39d084e493c80952d59cbcc92ea67f344e543298 (diff) |
"Chord Drill Sergeant" -> "Learn Piano Chords"
In the spirit of "keep it simple, stupid", I am naming this application as closely to the functionality as I can imagine.
Diffstat (limited to 'website/sandbox/learnpianochords/index.html')
-rw-r--r-- | website/sandbox/learnpianochords/index.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/website/sandbox/learnpianochords/index.html b/website/sandbox/learnpianochords/index.html new file mode 100644 index 000000000000..5687c29eb7d0 --- /dev/null +++ b/website/sandbox/learnpianochords/index.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <title>Learn Piano Chords</title> + <link rel="stylesheet" href="./output.css" /> + <script src="./Main.min.js"></script> + </head> + <body class="font-serif"> + <div id="mount"></div> + <script> + Elm.Main.init({node: document.getElementById("mount")}); + </script> + </body> +</html> |