-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
36 lines (28 loc) · 1.38 KB
/
test.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
<!doctype html>
<html lang="de-DE">
<head>
<title>Ampelsystem / Wiki - QR Code Generator – Sternenlabor</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="stylesheet" href="/src/style.css" media="all" />
</head>
<body>
<div id="qr-code-generator">
<h1>Ampelsystem / Wiki - QR Code Generator</h1>
<div id="logo"></div>
<div id="generator">
<preview-box value="" color="#ff0000" size="25"></preview-box>
<settings-form url="https://wiki.sternenlabor.de/doku.php?id=bereiche:elektronik:geraete:oszilloskop_ut2042c" color="#ff0000"></settings-form>
<div class="download-buttons">
<div class="btn" id="download-svg">Download QR Code als SVG</div>
<div class="btn" id="download-png">Download QR Code als PNG</div>
</div>
</div>
</div>
<script defer src="/src/PreviewBox.mjs" type="module"></script>
<script defer src="/src/SettingsForm.mjs" type="module"></script>
<script src="/index.mjs" type="module"></script>
</body>
</html>