-
Notifications
You must be signed in to change notification settings - Fork 1
/
stopwatch.html
79 lines (79 loc) · 3.06 KB
/
stopwatch.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Stopwatch | MacTime</title>
<link rel="icon" type="image/x-icon" href="/logo.png" />
<link rel="stylesheet" href="style.css" />
<script src="stopwatch.js"></script>
<script src="global.js"></script>
</head>
<body>
<div class="macsidebar" id="sidebar">
<a href="/"><img src="/logo.png" alt="" /></a>
<a href="/macideas/"><img src="/MacIdeas Logo.png" alt="" /></a>
<a href="/maclearn/"><img src="/MacLearn Logo.png" alt="" /></a>
<a href="/mactime/"><img src="/MacTime Logo.png" alt="" /></a>
<a href="/macvg/"><img src="/MacVG Logo.png" alt="" /></a>
<a href="/macblog/"><img src="/MacBlog Logo.png" alt="" /></a>
</div>
<nav class="nav">
<a href="index.html" class="logo">
<img src="mactime-logo.png" alt="MacTime Logo" />
</a>
<a href="calendar.html" class="nav-link">Calendar</a>
<a href="time.html" class="nav-link">Time</a>
<a href="stopwatch.html" class="nav-link">Stopwatch</a>
<a href="alarm.html" class="nav-link">Alarm</a>
<div class="right">
<div class="select help-menu tabs">
<span class="help-label help-menu">Tabs</span>
<img src="/caret.svg" class="caret help-menu" id="caret" />
<ul id="cats" class="cats help-menu">
<a href="calendar.html">Calendar</a>
<a href="time.html">Time</a>
<a href="timer.html">Timer</a>
<a href="stopwatch.html">Stopwatch</a>
<a href="countdown.html">Countdown</a>
<a href="alarm.html">Alarm</a>
<a href="focus.html">Focus</a>
</ul>
</div>
<div class="tools select help-menu">
<span class="help-label help-menu">Tools</span>
<img src="/caret.svg" class="caret help-menu" id="caret" />
<ul id="cats" class="cats help-menu">
<a href="timer.html">Timer</a>
<a href="countdown.html">Countdown</a>
</ul>
</div>
<div class="select help-menu">
<span class="help-label help-menu">Help</span>
<img src="/caret.svg" class="caret help-menu" id="caret" />
<ul id="cats" class="cats help-menu">
<a href="/macblog/projects/mactime/">About</a>
<a href="/macblog/updates/mactime/">Updates</a>
<a href="/macblog/projects/mactime/">Docs</a>
<a href="https://forms.gle/dWn2LQ2Bdzn6GaLEA" target="_blank">
Feedback
</a>
</ul>
</div>
<img src="/profile.svg" class="profile" id="profile" />
</div>
</nav>
<div class="main">
<div class="time">
<span id="minutes">00</span>:<span id="seconds">00</span>:<span
id="mili"
>00</span
>
</div>
<button class="btn" id="go">Start</button>
<div class="tip">
Tip: use the space bar to quickly start, pause, and reset.
</div>
</div>
</body>
</html>