about summary refs log tree commit diff stats
path: root/js/pomo/index.html
blob: 1d4c6a9d38e49af8402a46b3e60aa6425b0d5921 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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>