-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
105 lines (102 loc) · 3.29 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
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Quiz App - Profil</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=Poppins:wght@300;500&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles.css" />
<script src="./componants/Profile/Profile.js" type="module" defer></script>
</head>
<body>
<header>
<h1 class="app-name">Quiz App</h1>
</header>
<main>
<section class="profile-section">
<article class="user-profile">
<img
class="profile-image"
src="https://profile-images.xing.com/images/fa862de3cf8ebbf5a7f1900d120641c2-4/franziska-adam.1024x1024.jpg"
alt="Profile-image"
/>
<h2 class="user-name">Franzi Adam</h2>
</article>
<article class="user-info">
<h3 class="user-headline">About me</h3>
<p class="user-text">
Aesthetics enthusiast. Passion for design and technology, constantly
seeking new challenges and knowledge. Let's explore the visual
wonders of the world together.
</p>
</article>
</section>
<section class="counter-section">
<div class="counterProfilepage">
<img
class="counter-img"
src="https://cdn-icons-png.flaticon.com/128/3524/3524335.png"
alt="questionmark"
/>
<p class="counter-number">12</p>
</div>
<div class="counterProfilepage">
<img
class="counter-img"
src="https://cdn-icons-png.flaticon.com/128/2832/2832515.png"
alt="bookmark"
/>
<p class="counter-number">4</p>
</div>
</section>
<section class="setting-section">
<h3 class="setting-head">Settings</h3>
<div class="setting">
<p>Dark Mode</p>
<div class="toggle-switch">
<input class="toggle-input" id="toggle" type="checkbox" />
<label class="toggle-label" for="toggle"></label>
</div>
</div>
</section>
</main>
<nav class="nav-bottom">
<ul class="ul-nav-bottom">
<li class="inactive flex">
<a class="link" href="index.html"
><img
class="icon home"
src="/images/home-icon-dark.png"
alt="home icon"
/></a>
</li>
<li class="inactive flex">
<a class="link" href="bookmark-page.html"
><img
class="icon"
src="/images/bookmark-icon-dark.png"
alt="bookmark icon"
/></a>
</li>
<li class="inactive flex">
<a class="link" href="form.html">
<img class="icon" src="images/Plusicon-dark.png" alt="add icon" />
</a>
</li>
<li class="active flex">
<a class="link" href="#"
><img
class="icon"
src="images/profile-icon-light.png"
alt="profil icon"
/></a>
</li>
</ul>
</nav>
</body>
</html>