-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (56 loc) · 2.44 KB
/
Copy pathindex.html
File metadata and controls
56 lines (56 loc) · 2.44 KB
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
<!DOCTYPE html>
<html lang="de" dir="ltr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<meta name="theme-color" content="#0d9488">
<meta name="description" content="RIASEC-Typologie — Interaktiver Beruflichkeits- und Interessenfragebogen nach John L. Holland">
<title>RIASEC-Typologie | Berufliche Interessen</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&family=Vazirmatn:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div id="app">
<header>
<div class="header-top">
<button type="button" id="btn-header-back" class="header-back" hidden>
<svg viewBox="0 0 24 24" width="20" height="20" aria-hidden="true"><path fill="currentColor" d="M15.4 7.4 14 6l-6 6 6 6 1.4-1.4L10.8 12z"/></svg>
<span id="header-back-label">Zurück</span>
</button>
<div class="brand">
<span class="brand-icon" aria-hidden="true">◈</span>
<h1 id="site-title">RIASEC-Typologie</h1>
</div>
<div class="lang-switcher">
<label id="lang-label" class="sr-only" for="lang-select">Sprache</label>
<select id="lang-select" class="lang-select"></select>
</div>
</div>
<div class="progress-row">
<div class="progress-wrap" role="progressbar" aria-valuemin="0" aria-valuemax="100">
<div id="progress-bar"></div>
</div>
<span id="progress-text">Bereit</span>
</div>
</header>
<main id="main"></main>
<footer id="footer"></footer>
</div>
<script src="js/i18n.js"></script>
<script src="js/locales/de.js"></script>
<script src="js/locales/en.js"></script>
<script src="js/locales/es.js"></script>
<script src="js/locales/fr.js"></script>
<script src="js/locales/fa.js"></script>
<script src="js/locales/tr.js"></script>
<script src="js/locales/uk.js"></script>
<script src="js/locales/ru.js"></script>
<script src="js/data.js"></script>
<script src="js/scoring.js"></script>
<script src="js/lib/jspdf.umd.min.js"></script>
<script src="js/pdf-report.js"></script>
<script src="js/app.js"></script>
</body>
</html>