forked from G07cha/pomodoro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 709 Bytes
/
index.html
File metadata and controls
22 lines (22 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="src/styles/bootstrap.min.css">
<link rel="stylesheet" href="src/styles/index.css">
<script src="src/js/main.js"></script>
<script src="src/js/circleProgress.js"></script>
</head>
<body>
<img class="pomodoro" src="IconTemplate.png"></img><span id="counter">0</span>
<img class="settings" src="src/img/settingsIcon.png"></img>
<h2>Pomodoro Timer</h2>
<div class="timer">
<strong></strong>
</div>
<div class="pnl">
<button type="button" class="btn btn-primary reset">Reset</button>
<button type="button" class="btn btn-danger quit">Quit</button>
</div>
</body>
</html>