-
Notifications
You must be signed in to change notification settings - Fork 0
/
bookmarks.html
106 lines (106 loc) · 3.13 KB
/
bookmarks.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Lesezeichen</title>
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<script src="./index.js" defer></script>
</head>
<body class="bookmarks-page" data-js="bookmarks-page">
<header>
<h1>Quiz App</h1>
</header>
<main class="content_container">
<article class="question-card">
<button
class="bookmark-button"
data-js="bookmark-button"
aria-label="Lesezeichen"
title="Lesezeichen"
>
<i
class="fa-solid fa-bookmark fa-2xl"
style="color: #74c0fc"
aria-label="Lesezeichen Icon"
role="img"
></i>
</button>
<h2>Was ist HTML und wofür wird es verwendet?</h2>
<button
class="show-answer"
data-js="answer-button"
aria-label="Antwort"
title="Zeige die Antwort"
>
Antwort
</button>
<div class="answer" data-js="answer">
<p>
HTML (HyperText Markup Language) ist die
Standard-Auszeichnungssprache für Dokumente, die im Web angezeigt
werden. Es wird verwendet, um die Struktur von Webseiten zu
erstellen, indem Texte, Links, Bilder, Tabellen und andere Inhalte
definiert werden.
</p>
</div>
<div class="tags" aria-label="Schlagwort">
<span class="tag">#HTML</span>
</div>
</article>
</main>
<footer>
<nav aria-label="Hauptnavigation">
<ul>
<li>
<a
href="index.html"
class="nav-button"
aria-label="Startseite"
title="Startseite"
><i
class="fa-sharp fa-solid fa-house fa-2xl"
style="color: #74c0fc"
></i
></a>
</li>
<li>
<a
href="bookmarks.html"
class="nav-button"
aria-label="Lesezeichen"
title="Lesezeichen"
><i class="fa-solid fa-bookmark fa-2xl" style="color: #74c0fc"></i
></a>
</li>
<li>
<!-- Hier wird das neue Icon hinzugefügt, das zur Form verlinkt -->
<a
href="form.html"
class="nav-button"
aria-label="Neue Karte erstellen"
title="Neue Karte erstellen"
><i
class="fa-solid fa-circle-plus fa-2xl"
style="color: #74c0fc"
></i
></a>
</li>
<li>
<a
href="profile.html"
class="nav-button"
aria-label="Profil"
title="Profilseite"
><i class="fa-solid fa-user fa-2xl" style="color: #74c0fc"></i
></a>
</li>
</ul>
</nav>
</footer>
</body>
</html>