-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.html
87 lines (80 loc) · 2.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="./CSS/styles.css" />
<link rel="stylesheet" href="./CSS/global.css" />
<!-- <link rel="stylesheet" href="./CSS/components/button.css" /> -->
<link rel="stylesheet" href="./CSS/components/card.css" />
<!-- <link rel="stylesheet" href="./CSS/components/navigation.css" /> -->
<!-- NOT SURE ABOUT THE FOLLOWING - doing this to integrate the bookmark icon: -->
<link
rel="icon"
type="image/png"
alt="bookmark"
href="./pictures/StarBookmark.png"
/>
</head>
<body>
<header>
<h1>Quiz App</h1>
</header>
<main class="mainProfilePage">
<section class="profileNamePicture">
<img
src="./pictures/userIcon.png"
height="100px"
alt="user profile"
class="navBarIcon"
id="userIconNavBar"
/>
<h1 class="nameProfilePage">Max Doe</h1>
</section>
<h3>About me</h3>
<p>I am an invented person and I am crazy about quiz games.</p>
<h2>Settings</h2>
<p>Dark Mode</p>
<button>Dark mode switch</button>
</p>
</main>
<footer>
<nav class="navBarLinks">
<button class="navBarButton">
<a href="#">
<img
src="./pictures/homeIcon.png"
height="40"
alt="home"
class="navBarIcon"
id="homeIcon"
/>
</a>
</button>
<button class="navBarButton">
<a href="#">
<img
src="./pictures/bookmark-outline.svg"
height="40"
alt="bookmarks"
class="navBarIcon"
id="BookmarkIconNavBar"
/>
</a>
</button>
<button class="activatedNavBarButton">
<a href="#">
<img
src="./pictures/userIcon.png"
height="40"
alt="user profile"
class="navBarIcon"
id="userIconNavBar"
/>
</a>
</button>
</nav>
</footer>
</body>
</html>