-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (52 loc) · 2.16 KB
/
index.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Time Tool</title>
<link rel="stylesheet" href="styles.css">
</head>
<body oncontextmenu="return false" onselectstart="return false" ondragstart="return false" onkeydown="return false">
<!-- 다운로드 버튼 추가 -->
<a id="downloadBtn" href="time-tool-1.0.0-setup.exe" download>Download Installer</a>
<button id="toggleHeaderBtn">Hide Header</button>
<header id="header">
<button id="stopwatchBtn">Stopwatch</button>
<button id="timerBtn">Timer</button>
<button id="clockBtn">Clock</button>
</header>
<div id="content">
<div id="stopwatch" class="tab">
<div class="timer">
<div id="stopwatchDisplay">00:00:00.00</div>
<div class="buttons">
<button id="startPauseStopwatchBtn">Start</button>
<button id="resetStopwatchBtn">Reset</button>
</div>
<p class="developer-credit">Developed by pixelhize</p>
</div>
</div>
<div id="timer" class="tab">
<div class="timer">
<div id="timerInputContainer">
<input type="number" id="timerHourInput" placeholder="Hours" min="0">
<input type="number" id="timerMinuteInput" placeholder="Minutes" min="0">
<input type="number" id="timerSecondInput" placeholder="Seconds" min="0">
</div>
<div id="timerDisplay">00:00:00.00</div>
<div class="buttons">
<button id="startPauseTimerBtn">Start</button>
<button id="resetTimerBtn">Reset</button>
</div>
<p class="developer-credit">Developed by pixelhize</p>
</div>
</div>
<div id="clock" class="tab">
<div id="clockDisplay">00:00:00</div>
<p class="developer-credit">Developed by pixelhize</p>
</div>
</div>
<script src="script.js"></script>
<script src="nodrag.js"></script>
</body>
</html>