tools/timer/index.html
2025-01-20 23:02:58 +01:00

25 lines
No EOL
724 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="https://rimgo.pussthecat.org/RFbdMMB.png" type="image/x-icon">
<title>zy's Timer</title>
</head>
<body>
<div class="main">
<span id="time">00:00:00:00</span>
<div class="buttons">
<button id="start">Start</button>
<button id="lap">Lap</button>
<button id="reset">Reset</button>
</div>
<a href="/countdown">Countdown</a>
<ul id="lap-list"></ul>
</div>
<script src="index.js"></script>
</body>
</html>