mirror of
https://github.com/binarydigitlol/gametimer.git
synced 2025-06-20 17:02:25 +00:00
44 lines
1.3 KiB
HTML
44 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
<link rel="stylesheet" href="pomodoro.css">
|
|
<link href="nes.css" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
|
|
<div id="container">
|
|
|
|
<div class="nes-container is-dark">
|
|
<h3 class="title">Game Timer</h3>
|
|
<p>
|
|
<h3 id="timer">
|
|
<label id="timerText"></label>
|
|
</h3>
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div id="controls">
|
|
<button class="nes-btn is-primary" onclick="countdown(600);">10 Min</button>
|
|
<button class="nes-btn is-warning" onclick="countdown(900);">15 Min</button>
|
|
<br>
|
|
<button class="nes-btn is-error" onclick="stopTimer();">STOP</button>
|
|
</div>
|
|
|
|
<audio id="alarm" src="asset/SEGA.mp3" preload="auto"></audio>
|
|
<script src="pomodoro.js"></script>
|
|
|
|
</div>
|
|
|
|
<footer>
|
|
<small>
|
|
<a href="https://twitch.tv/KilobyteKeith">Twitch</a> |
|
|
<a href="https://github.com/BinaryDigitDev/gametimer">GitHub</a>
|
|
<small>
|
|
</footer>
|
|
<br>
|
|
</body>
|
|
</html>
|