-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
99 lines (98 loc) · 3.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/styles.css" />
<title>Quiz App</title>
</head>
<body>
<header>
<h1>Profile</h1>
</header>
<main class="user">
<section class="user__card">
<img
class="user__image"
src="./images/BadgePhoto.jpg"
alt="Headshot of Sacid Celik"
/>
<p class="user__name">Sacid Celik</p>
</section>
<div class="divider"></div>
<section class="user__bio">
<h2>Bio</h2>
<article class="user__description">
<p class="user__paragraph">
I'm Sacid, 33, based in Munich and originally from Bremen.
</p>
<p class="user__paragraph">
I have 7 years of experience in advertising and marketing working at
a global corporation. Currently, I am actively working on extending
my skillset by attending a web dev bootcamp at
<a
href="https://www.neuefische.de"
target="_blank"
class="user__anchor"
>neuefische</a
>.
</p>
<p class="user__paragraph">
Feel free to <a href="#contact" class="user__anchor">reach out</a> if
you want to know more.
</p>
</article>
</section>
<section class="tags user__skills">
<h2>Skills</h2>
<ul class="tags__container user__skills-tags">
<li class="tags__item">Online Advertising Campaign Setup</li>
<li class="tags__item">Online Advertising Analytics</li>
<li class="tags__item">Very futuristic HTML-only websites</li>
<li class="tags__item">And now some CSS magic</li>
</ul>
</section>
<section class="user__logout">
<button>LOGOUT</button>
</section>
<footer>
<nav class="navigation">
<ul class="navigation__container">
<li class="navigation__item">
<a href="index.html"
><img
class="navigation__image"
src="./images/console.png"
alt="Home"
/></a>
</li>
<li class="navigation__item">
<a href="bookmarks.html"
><img
class="navigation__image"
src="./images/mushroom.png"
alt="Bookmarks"
/></a>
</li>
<li class="navigation__item">
<a href="create.html"
><img
class="navigation__image"
src="./images/puzzle.png"
alt="Create"
/></a>
</li>
<li class="navigation__item">
<a href="profile.html"
><img
class="navigation__image navigation__image--active"
src="./images/profile_character.png"
alt="Profile"
/></a>
</li>
</ul>
</nav>
</footer>
</body>
</html>