popup-timer/popup/index.html
2025-08-05 17:19:51 +02:00

33 lines
940 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Popup Timer</title>
<!-- FontAwesome -->
<script src="https://kit.fontawesome.com/b3a602c8a0.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="/popup/style.css">
<link rel="shortcut icon" href="/favicon.ico" />
<script src="/popup/script.js" defer></script>
</head>
<!-- This might just trick some really old browser to stay focused all the time -->
<body onblur="self.focus();">
<main>
<span id="hours">00h</span> <span id="minutes">00m</span> <span id="seconds">00s</span>
<br>
<i id="play" class="fas fa-play"></i> &nbsp; <i id="restart" class="fas fa-redo"></i>
</main>
<div id="progress-bg" class="progress"></div>
<div id="progress-fg" class="progress"></div>
</body>
</html>