forked from HackYourFuture/JavaScript2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (27 loc) · 856 Bytes
/
index.html
File metadata and controls
33 lines (27 loc) · 856 Bytes
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
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pomodoro Clock</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div id="container">
<h1>Pomodoro Clock</h1>
<p>Session Length</p>
<div id="userselect">
<input type="image" id="button_up" src="icon_up.jpg">
<h5 id="userTime"></h5>
<input type="image" id="button_down" src="icon_down.jpg">
</div>
<div class="session_border">
<p>Session</p>
<br>
<p id="sessionTime"></p>
</div>
<div id="play-pause-stop-buttons">
<input type="image" id="button_play" src="icon_play.jpg">
<input type="image" id="button_stop" src="icon_stop.jpg">
<input type="image" id="button_pause" src="icon_pause.jpg">
</div>
</div>
<script src="index.js"></script>
</body>