diff options
Diffstat (limited to 'js/notes/index.html')
-rw-r--r-- | js/notes/index.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/js/notes/index.html b/js/notes/index.html new file mode 100644 index 0000000..79749b9 --- /dev/null +++ b/js/notes/index.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>notes</title> + <style> + body, html { + margin: 0; + padding: 0; + overflow: hidden; + } + #canvas { + background-color: grey; + } + </style> +</head> +<body> + <canvas id="canvas"></canvas> + <script src="app.js"></script> +</body> +</html> \ No newline at end of file |