31 lines
871 B
HTML
31 lines
871 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">
|
|
<meta name="robots" content="noindex">
|
|
<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>
|
|
<body>
|
|
<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> <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>
|
|
|