-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpomodoro.html
31 lines (29 loc) · 1005 Bytes
/
pomodoro.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>pomodor</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" title="pomodoro stylesheet" href="pomodoro.css">
</head>
<body>
<div id="root"></div>
<!-- production version, optimized for size and speed -->
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<script src="pomodoro.js" type="text/javascript"></script>
<div id="app" class="container">
<h2>
<span>Pomodoro</span>
<button @click="start()" class="btn btn-info btn-lg"><span class="glyphicon glyphicon-play"></span>
</button>
</h2>
<div class="well">
<div class="pomodoro-timer">
<span>{{minute}}</span>:<span>{{second}}</span>
</div>
</div>
</div>
<script src="pomodoro.js" type="text/javascript"></script>
</body>
</html>