forked from Online-Timer/Online-Timer.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChange.html
More file actions
52 lines (41 loc) · 1.75 KB
/
Change.html
File metadata and controls
52 lines (41 loc) · 1.75 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Online Timer</title>
<script src="Change_script.js"></script>
<link id="theme" rel="stylesheet" href="dark_style.css">
<link rel="icon" href="timericon.png" type="image/xicon">
</head>
<body>
<div class="TopNav">
<a class="active" href="Change.html">Countdown</a>
<a href="index.html">Stopwatch</a>
</div>
<h1 class="Title">Countdown</h1>
<div class="container2">
<button type="button">00</button>
<p class="TimeSymbol">:</p>
<button type="button">05</button>
<p class="TimeSymbol">:</p>
<button type="button">00</button>
<p class="TimeSymbol">.</p>
<button type="button">00</button>
</div>
<div class="ChangeButtons">
<button id="sp" type="button" onclick="cancel()">cancel</button>
<button id="cr" type="button" onclick="confirm()">confirm</button>
</div>
<!--<div class="changeButtons">-->
<!-- <button class="minus" id="hourMinus" onclick="hm()" type="button">-</button>-->
<!-- <button class="minus" id="minMinus" onclick="mm()" type="button">-</button>-->
<!-- <button class="minus" id="secMinus" onclick="sm()" type="button">-</button>-->
<!-- <button class="minus" id="zeroOneSecMinus" onclick="zm()" type="button">-</button>-->
<!-- <button class="plus" id="hourPlus" onclick="hp()" type="button">+</button>-->
<!-- <button class="plus" id="minPlus" onclick="mp()" type="button">+</button>-->
<!-- <button class="plus" id="secPlus" onclick="sp()" type="button">+</button>-->
<!-- <button class="plus" id="zeroOneSecPlus" onclick="zp()" type="button">+</button>-->
<!--</div>-->
<img id="sty" src="light.png" alt="Button" onclick="sty()" class="Theme">
</body>
</html>