-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (50 loc) · 1.66 KB
/
index.html
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
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta
name="description"
content="Advent of Code solutions and challenges"
/>
<meta
name="keywords"
content="Advent of Code, programming, coding, challenges, puzzles"
/>
<meta name="author" content="@BenjaminDerProgrammierer" />
<meta name="robots" content="index, follow" />
<meta name="theme-color" content="#ffffff" />
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Advent of Code</title>
<link rel="stylesheet" href="styles/style.css" />
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
</head>
<body>
<h1>Advent of Code</h1>
<div id="container">
<div id="controls">
<label for="year">
Year:
<input id="year" type="number" name="year" min="2015" max="2099" value="2015"/>
</label>
<label for="day">
Day:
<input id="day" type="number" name="day" min="1" max="25" value="1"/>
</label>
<label for="part">
Part:
<select id="part" name="part">
<option value="1" selected>1</option>
<option value="2">2</option>
</select>
</label>
<label for="test">
<input type="checkbox" name="test" id="test" /> Use test input
</label>
<input type="submit" value="Generate" />
</div>
<span id="solution">Lösung wird generiert...</span>
</div>
<script src="./dist/index.js"></script>
</body>
</html>