1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Aurora Counter</title>
<link rel="stylesheet" href="src/styles.css" />
</head>
<body>
<main class="app">
<h1>Aurora Counter</h1>
<p class="hint">Eine kleine Demo aus der Mini-IDE.</p>
<output id="value" class="value">0</output>
<div class="row">
<button id="dec" class="btn">−</button>
<button id="reset" class="btn ghost">Reset</button>
<button id="inc" class="btn">+</button>
</div>
</main>
<script src="src/app.js"></script>
</body>
</html>