forked from paulphilip/pythoncode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (25 loc) · 696 Bytes
/
index.html
File metadata and controls
26 lines (25 loc) · 696 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="timer.css">
<title>Countdown Timer</title>
</head>
<body>
<div class="outer-div">
<h3>Enter value between 1 and 9</h3>
<input type="number" name="" value="0" id="input-type">
<button type="button" name="button" id="btn" >Start Counter</button>
</div>
<div class="timer-show-outer-div">
<div class="inner-timer-div">
<span id="small">0</span>
</div>
<div class="inner-timer-div2">
<span id="next"></span>
</div>
</div>
<script type="text/javascript" src="timer.js">
</script>
</body>
</html>