-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (47 loc) · 2.27 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
<!DOCTYPE html>
<html lang="de">
<head>
<!-- Grundlegende Metadaten -->
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Morgen Prüfung</title>
<!-- Favicon -->
<link href="/src/assets/logo.jpeg" rel="icon">
<!-- Beschreibung (Meta Description) -->
<meta content="Morgen Prüfung ist deine Plattform für effiziente Prüfungsvorbereitung. Finde Lerninhalte, Quizfragen und Karteikarten für Schule, Ausbildung und Studium." name="description">
<!-- Keywords -->
<meta content="Prüfungsvorbereitung, Schule, Ausbildung, Fachinformatiker, Karteikarten, Quiz, Lernplattform, Lernen, Prüfungen, Abschlussprüfung, Bildung" name="keywords">
<!-- Open Graph Tags für Social Media -->
<meta content="Morgen Prüfung" property="og:title">
<meta content="Effiziente und gezielte Prüfungsvorbereitung mit komprimierten Lerninhalten, Quiz und Karteikarten. Werde Teil der Community und teile dein Wissen!" property="og:description">
<meta content="/src/assets/logo.jpeg" property="og:image">
<meta content="https://morgen-pruefung.de" property="og:url">
<meta content="website" property="og:type">
<meta content="de_DE" property="og:locale">
<!-- Twitter Card Tags -->
<meta content="summary_large_image" name="twitter:card">
<meta content="Morgen Prüfung" name="twitter:title">
<meta content="Finde alles, was du für deine Prüfung brauchst – Lerninhalte, Karteikarten, Quizfragen und vieles mehr." name="twitter:description">
<meta content="/src/assets/logo.jpeg" name="twitter:image">
<!-- Canonical URL -->
<link href="https://morgen-pruefung.de" rel="canonical">
<!-- Robots -->
<meta content="index, follow" name="robots">
<!-- Author -->
<meta content="Morgen Prüfung Team" name="author">
<!-- Stylesheets und andere Ressourcen -->
<link href="/src/styles/main.css" rel="stylesheet">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-KG3WBR6GN0"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-KG3WBR6GN0');
</script>
</head>
<body>
<div id="app"></div>
<script src="/src/main.ts" type="module"></script>
</body>
</html>