-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (46 loc) · 1.61 KB
/
index.html
File metadata and controls
49 lines (46 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="fo">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Play Evaluation Timer</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<!-- GameJam Logo -->
<div class="logo-section">
<img src="GJ Logo White Border.png" alt="GameJam Logo" class="logo">
</div>
<!-- Main countdown timer to September 7, 2025 8pm -->
<div class="timer-section">
<h1 class="timer-label">Tíð inntil atkvøðugreiðslan er liðug</h1>
<div id="main-timer" class="timer">
<span id="hours">00</span> :
<span id="minutes">00</span> :
<span id="seconds">00</span>
</div>
<div class="timer-units">
<span>tímar</span>
<span>minuttir</span>
<span>sekundur</span>
</div>
</div>
<!-- 10-minute repeating timer -->
<div class="timer-section">
<h2 class="timer-label">Tíð inntil tit burdu skift til næsta spæl
<span class="subtitle">(mest fyri borðspøl)</span>
</h2>
<div id="game-timer" class="timer">
<span id="game-minutes">10</span> :
<span id="game-seconds">00</span>
</div>
<div class="timer-units">
<span>minuttir</span>
<span>sekundur</span>
</div>
</div>
</div>
<script src="timer.js"></script>
</body>
</html>