-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
109 lines (104 loc) · 3.83 KB
/
index.html
File metadata and controls
109 lines (104 loc) · 3.83 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="description" content="Free Web tutorials">
<meta name="keywords" content="HTML,CSS,JavaScript">
<meta name="author" content="Roberto Muñoz Garcia">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ"
crossorigin="anonymous">
<script src="https://use.fontawesome.com/8b4390e89f.js"></script>
<link rel="stylesheet" type="text/css" href="">
<title></title>
</head>
<body>
<div class="container-fluid">
</br>
<div class="row text-center">
<div class="col-1 col-sm-1 col-md-2 col-lg-3 col-xl-3"></div>
<div style="background-color:#FF4000" class="col-10 col-sm-10 col-md-8 col-lg-6 col-xl-6">
<div class="row">
<div class="col-12">
</br>
<h3 style="color:white">POMODORO CLOCK</h3>
</div>
</div>
<div class="row">
<div class="col-6">
<h6 style="color:white">BREAK LENGTH</h6>
</div>
<div class="col-6">
<h6 style="color:white">SESSION LENGTH</h6>
</div>
</div>
<div class="row">
<div class="col-6">
<h5 id="breakTime" style="background-color:white"></h5>
</div>
<div class="col-6">
<h5 id="sessionTime" style="background-color:white"></h5>
</div>
</div>
<div class="row">
<div class="col-3">
<button id="masBreak" type="button" class="btn btn-default">
<b>+</b>
</button>
</div>
<div class="col-3">
<button id="menosBreak" type="button" class="btn btn-default">
<b>-</b>
</button>
</div>
<div class="col-3">
<button id="masSession" type="button" class="btn btn-default">
<b>+</b>
</button>
</div>
<div class="col-3">
<button id="menosSession" type="button" class="btn btn-default">
<b>-</b>
</button>
</div>
</div>
<div class="row">
<div class="col-12">
</br>
<h2 id="totalTime" style="background-color:white"></h2>
</div>
</div>
<div class="row">
<div class="col-12">
<h4 id="countType" style="color:white"></h4>
</div>
</div>
<div class="row">
<div class="col-6">
<button id="startCount" type="button" class="btn btn-default">
<b>START</b>
</button>
</div>
<div class="col-6">
<button id="stopCount" type="button" class="btn btn-default">
<b>STOP</b>
</button>
</div>
</div>
</br>
<div class="row"></div>
</div>
<div class="col-1 col-sm-1 col-md-2 col-lg-3 col-xl-3"></div>
</div>
</div>
<!-- jQuery first, then Bootstrap JS. -->
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js" integrity="sha384-A7FZj7v+d/sdmMqp/nOQwliLvUsJfDHW+k9Omg/a/EheAdgtzNs3hpfag6Ed950n"
crossorigin="anonymous"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn"
crossorigin="anonymous"></script>
<script src="script/clock.js"></script>
</body>
</html>