-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
66 lines (56 loc) · 2.58 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
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#000000" />
<link rel="stylesheet" type="text/css" href="print.css" media="print" />
<link rel="stylesheet" href="style.css" type="text/css" media="screen" />
<title>Afu Test - von Thomas Fritzsche - DJ1TF </title>
<link rel="stylesheet" href="katex/katex.min.css">
<!-- The loading of KaTeX is deferred to speed up page rendering -->
<script defer src="katex/katex.min.js"></script>
<!-- To automatically render math in text elements, include the auto-render extension: -->
<script defer src="katex/contrib/auto-render.min.js"></script>
</head>
<body>
<div class="no-print title">
<h2>Simulator für die Amateurfunkprüfung - von DJ1TF / Thomas (für Druck)</h2>
<div>
<strong>Links</strong>
<ul>
<li><img class="icon" style="margin:1px;" src="icons/card-checklist.svg" /> <a href="online.html">Fragen im
Browser beantworten und auswerten</a> </li>
<li><img class="icon" style="margin:1px;" src="icons/tools.svg" /> <a
href="https://www.bundesnetzagentur.de/SharedDocs/Downloads/DE/Sachgebiete/Telekommunikation/Unternehmen_Institutionen/Frequenzen/Amateurfunk/AntraegeFormulare/Hilfsmittel_12062024.pdf?__blob=publicationFile&v=2"
target="_blank">Hilfsmittel</a></li>
<li><img class="icon" style="margin:1px;" src="icons/github.svg" /> <a
href="https://github.com/fritzsche/afu_test" target=”_blank”>GitHub</a> </li>
</ul>
<p id="sel_test">
<strong>Prüfungsteil:</strong>
<select id="test_select">
<option value="V">Vorschriften</option>
<option value="B">Betriebstechnik</option>
<option value="N">Technik Klasse N</option>
<option value="E">Technik Klasse E</option>
<option value="A">Technik Klasse A</option>
</select>
</p>
<p>
<strong>Druckoptionen: </strong>
<input type="checkbox" id="print_no_page_break" name="print_no_page_break" />
<label for="print_no_page_break">Kein Seitenumbruch in Fragen</label>
<input type="checkbox" id="print_more_margin" name="print_more_margin" />
<label for="print_more_margin">Extra Abstände</label>
</p>
</div>
</div>
<h2 class="title" id="title"></h2>
<div id="questions"> </div>
<div style="break-after:page"></div>
<h2 class="title">Lösungen</h2>
<div id="answer"> </div>
<script type="module" src="test.js"></script>
</body>
</html>