-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (47 loc) · 1.4 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
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Kalender</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="noprint">
<h1>Montessori Linear-Kalender</h1>
<p>
inspiriert von
<a
href="https://www.elternvommars.com/2020/12/unser-linear-kalender-2021-zum.html"
>
https://www.elternvommars.com/2020/12/unser-linear-kalender-2021-zum.html
</a>
</p>
<p>Empfohlene Druckeinstellungen:</p>
<ul>
<li>Papiergröße: <b>DIN-A4</b></li>
<li>Skalierung: <b>100%</b></li>
<li>
Hintergrundgrafiken drucken: <b>☑ ja</b>
(sonst wird der Farbverlauf nicht mitgedruckt!)
</li>
</ul>
<hr />
<form class="inputs">
<label for="yearInput">Jahr:</label>
<input type="number" size="4" name="year" id="yearInput" />
<label for="localeInput">Sprache:</label>
<select name="locale" id="localeInput"></select>
</form>
<div class="links">
<a href="https://github.com/flesser/linear-calendar">Quellcode</a> |
<a href="https://github.com/flesser/linear-calendar/issues/new">
Problem melden
</a>
</div>
<hr />
</div>
<div id="calendar"></div>
<script src="languages.js"></script>
<script src="script.js"></script>
</body>
</html>