-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (20 loc) · 739 Bytes
/
index.html
File metadata and controls
20 lines (20 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flowtime Timer</title>
<meta name="js-widget-title" content="Flowtime Timer">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<main class="app">
<h1>Flowtime Timer</h1>
<p class="intro">Work until you need a break, then let the timer suggest the right reset.</p>
<div id="timer" class="timer" role="timer" aria-atomic="true">00:00</div>
<button id="startStopBtn" type="button">Start Work</button>
<p id="status" class="status" role="status" aria-live="polite">Ready to start a new session?</p>
</main>
<script src="app.js"></script>
</body>
</html>