-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
93 lines (89 loc) · 3.22 KB
/
profile.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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Profil</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="profile-page" data-js="profile-page">
<header>
<h1>Quiz App</h1>
</header aria-label="Header">
<main class="content_container" aria-labelledby="profil-abschnitt">
<section class="profile" id="profile-section">
<div class="profile-info" aria-labelledby="profil-name" role="region">
<div class="profile-image" aria-hidden="true">
<img
src="./pictures/f2720901-d981-4e11-881b-d2eab9f1a3aa.jpeg"
alt="Profilbild von Marthilda Vollmer"
/>
</div>
<h2>Marthilda Vollmer</h2>
<p class="about-me" aria-label="Über mich">
Hey!<br />Ich bin Marthilda und habe diese Quiz App gebaut.
</p>
</div>
<div class="counters" aria-label="Zähler für erstellte Fragen und Lesezeichen">
<div class="counter-item" aria-label="Erstellte Fragen" title="Erstellte Fragen">
<i class="fas fa-question-circle"></i>
<span>5</span>
</div>
<div class="counter-item" aria-label="Lesezeichen" title="Deine Lesezeichen">
<i class="fas fa-bookmark"></i>
<span>1</span>
</div>
</div>
<div class="settings" aria-label="Einstellungen">
<h3>Hintergrundeinstellungen</h3>
<label class="toggle-mode" aria-label="Schalter für Dunkelmodus/Hellmodus">
<button class="button button--toggle" data-js="toggle-mode-button" >
Wechsel Modus
</button>
</div>
</section>
</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-regular 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>