-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcountdown.html
More file actions
36 lines (31 loc) · 868 Bytes
/
countdown.html
File metadata and controls
36 lines (31 loc) · 868 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
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>countdown</title>
<link rel="stylesheet" href="..//BOOSTRAP/bootstrap-5.2.2-dist/css/bootstrap.min.css">
</head>
<style>
main {
width: 17em;
height: 13em;
margin: auto;
border-style: ridge;
padding: 1em;
}
#ui {
margin-left: 4em;
}
</style>
<body>
<main>
<input id="df" class="form-control mt-3" type="number">
<input id="dfs" class="form-control mt-3" type="number">
<button id="ui" onclick="down()" class="btn btn-warning mt-3" value="countDown">countdown</button>
<h2 id="show"></h2>
</main>
</body>
</html>
<script src="./count.js"></script>