diff options
author | elioat <elioat@tilde.institute> | 2024-01-01 18:34:34 -0500 |
---|---|---|
committer | elioat <elioat@tilde.institute> | 2024-01-01 18:34:34 -0500 |
commit | 9a637047103b5f4406fab69eb16a252acca2c9b0 (patch) | |
tree | 321be37ba257cb1da5458b9457d175215479d882 /js/pomo/index.html | |
parent | 1f3b6ad3e57d8598efb6f46c4172f139690c92e2 (diff) | |
download | tour-9a637047103b5f4406fab69eb16a252acca2c9b0.tar.gz |
pomodoro timer
Diffstat (limited to 'js/pomo/index.html')
-rw-r--r-- | js/pomo/index.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/js/pomo/index.html b/js/pomo/index.html new file mode 100644 index 0000000..3117b30 --- /dev/null +++ b/js/pomo/index.html @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <title>Pomodoro Timer</title> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width"> + <style> + body { + margin: 0; + padding: 0; + } + #pomoCanvas { + display: block; + } + </style> +</head> +<body> + <canvas id="pomoCanvas"></canvas> + <script src="pomo.js"></script> +</body> +</html> \ No newline at end of file |