-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (47 loc) · 1.73 KB
/
index.html
File metadata and controls
53 lines (47 loc) · 1.73 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
53
<!DOCTYPE html>
<html>
<head>
<title>PracTimer</title>
<meta charset="UTF-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="description" content="PracTimer is a Timer built using Vanilla Javascript, HTML5 and CSS." />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link href="./manifest.json" rel="manifest">
<link href="./style.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Oswald:700" rel="stylesheet" />
<link rel="icon" type="image/png" sizes="16x16" href="./images/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="./images/favicon-96x96.png">
</head>
<body>
<div id="header"><a href="#about"> About </a></div>
<div id="about" class="overlay">
<div class="popup">
<h2>About</h2>
<a class="close" id="close" href="#">X</a>
<div class="content">
<p>
I had need for a timer. I didn't like any of the timers that were
available to me, so I wrote one. I wrote it using Vanilla
Javascript, location.hash, and a few interesting parts of CSS and
HTML5.
</p>
<p>
All controls are via <code>location.hash</code>, also known as the
anchor tag.
</p>
<p>Created by <a href="https://jacoby.github.io/">Dave Jacoby</a></p>
</div>
</div>
</div>
<div id="time" class="min5">
<span id="minute">00</span>
<span id="second">00</span>
</div>
<script src="./tone.js"></script>
<script src="./practimer-0.1.js"></script>
<script src="./sw-start-0.1.js"></script>
<script>
</script>
</body>
</html>