forked from HoloTech/twitch-subathon-timer
23 lines
571 B
HTML
23 lines
571 B
HTML
<!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>
|