1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| <!DOCTYPE html>
| <html lang="de">
| <head>
| <title>Kalender</title>
| <meta charset="utf-8"/>
| <link rel="stylesheet" type="text/css" href="plain-calendar.css"/>
| </head>
| <body>
| <div>
| <h1>Kalender</h1>
| <form id="mask">
| <input type="text" placeholder="month|Monat|mois" id="month"/>
| <input type="text" placeholder="year|Jahr|an" id="year"/>
| <button type="submit" id="submit">⏎</button>
| </form>
| <div id="calendar"></div>
| </div>
| <script src="plain-calendar.js" type="module"></script>
| </body>
| </html>
|
|