Initial timer

This commit is contained in:
2025-09-02 22:28:58 +10:00
commit 84eeb1bb81
3 changed files with 246 additions and 0 deletions

22
index.html Normal file
View File

@@ -0,0 +1,22 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link href='https://fonts.googleapis.com/css?family=Inter' rel='stylesheet'>
<link rel="stylesheet" href="timer.css" />
<script src="timer.js"></script>
<title>Croccy Timer</title>
</head>
<body>
<div class="timer-box">
<div class="timer-bg">
<div class="timer-time">
<span class="timer-time">00:00</span>
</div>
<div class="timer-details">
</div>
<div class="timer-details">
</div>
</div>
</body>
</html>