-
Notifications
You must be signed in to change notification settings - Fork 0
/
timer.html
39 lines (35 loc) · 1.19 KB
/
timer.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
<html lang="en">
<head>
<link rel="stylesheet" href="style2.css">
</head>
<style>
body {
background-image: linear-gradient(to right, rgb(36, 32, 32) , rgb(167, 17, 87));;
background-repeat: no-repeat;
}
</style>
<body>
<div class="container1" style="height: 100%">
<h1><br>
TIMER</h1>
<div id="countdown">
<span id="days">0d</span> <span id="hours">0h</span>
<span id="minutes">0m</span> <span id="seconds">0s</span>
<div id="input-boxes">
<input id="days1" type="int" placeholder="Enter Days">
<input id="hours1" type="int" placeholder="Enter Hours">
<input id="minutes1" type="int" placeholder="Enter Minutes">
</div>
<div id="buttons1">
<button class="btn" id="start1">
Start</button>
<button class="btn" id="stop1">
Stop</button>
</div>
</div>
</div>
<script src="script2.js"></script>
</body>
</html>
</body>
</html>