-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (25 loc) · 1.25 KB
/
index.html
File metadata and controls
28 lines (25 loc) · 1.25 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description"
content="Binary Timer Countdown - A Unique Way to Track Time in Binary!
This interactive tool lets you visualize countdowns in binary, making it perfect for tech enthusiasts, programmers, and learners. Whether you're exploring binary concepts, teaching coding fundamentals, or simply fascinated by unique timers, our binary countdown tool combines education and functionality. Learn, teach, and enjoy the simplicity of binary time tracking today!">
<meta name="author" content="kungfux">
<link rel="canonical" href="https://kungfux.github.io/binarytimer/">
<title>Binary Timer</title>
</head>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ZX3L2JT8RY"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-ZX3L2JT8RY');
</script>
<body class="m-0 p-0 leading-6 font-normal flex flex-col justify-center items-center">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>