-
Notifications
You must be signed in to change notification settings - Fork 0
/
countdown.html
37 lines (34 loc) · 1.05 KB
/
countdown.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="countdown.css">
</head>
<body>
<div id="container">
<h2>Countdown timer</h2>
<div id="start">
<span id="startday"></span>
<span id="starthr"></span>
<span id="startmin"></span>
<span id="startsec"></span>
</div>
<div id="countdown">
<span id="days"></span><p>Days</p>
<span id="hours"></span><p>Hrs</p>
<span id="minutes"></span><p>Min</p>
<span id="seconds"></span><p>Sec</p>
</div>
<div id="end"></div>
</div>
<!-- <form action="">
<label for="">Enter Time</label>
<input id="get" type="text">
<br><button type="button" onclick="gettime()">Submit</button>
</form>
<p id="output"></p> -->
<script src="countdown.js"></script>
</body>
</html>