-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (57 loc) · 1.18 KB
/
index.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
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
<html>
<head>
<script type="text/javascript" src="myScript.js"></script>
<link rel="stylesheet" type="text/css" href="myStyle.css">
<style>
@font-face {
font-family: myFirstFont;
src: url(font2/heroFont.ttf);
}
.panel {
background:#6d6d6d;
border: solid 1px #6d6d6d;;
box-shadow: -3px 10px 12px lightgrey;
}
body{
margin: 0;
}
#domatezzzLogo{
margin-top:1%;
margin-left: 10%;
height: 7%;
}
p{ margin-top: -3%;
font-size:35;
color:#ddffcc;
margin-left: 14%; font-family: myFirstFont;
}
</style>
</head>
<body>
<div class="panel">
<img id="domatezzzLogo"src ="domatezzz.png"/>
<p>Domatezzz</p>
</div>
<div id="logo">
</div>
<div id="pomodoro-app">
<div id="container">
<div id="timer">
<div id="time">
<span id="minutes">25</span>
<span id="colon">:</span>
<span id="seconds">00</span>
</div>
<div id="filler"></div>
</div>
<div id="buttons">
<button id="work">Work</button>
<button id="shortBreak">Short Break</button>
<button id="longBreak">Long Break</button>
<button id="stop">Stop</button>
</div>
</div>
</div>
<audio id="audio" src="drumbit.wav" ></audio>
</body>
</html>