-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (45 loc) · 1.85 KB
/
index.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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wizytówka</title>
<link href="normalize.css" rel="stylesheet" type="text/css" />
<link href="style.css" rel="stylesheet" type="text/css" />
<script src="https://kit.fontawesome.com/9fc43b1c97.js" crossorigin="anonymous"></script>
</head>
<body>
<main class="main">
<article class="person">
<img
class="person__picture person__picture--activ"
src="avatar.png"
alt="Zdjęcie imię i nazwisko"
/>
<div>
<header class="person__info">
<h1 class="person__name">Krzysztof Grodzki</h1>
<p class="person__position">Specjalista ds. druku, przyszły frontendowiec?</p>
</header>
<p class="person__description person__description--with-margin">
Zawodowy drukarz z <strong class="special">kilkunastoletnim doświadczeniem</strong>,
domowy fotograf i grafik,
<strong class="special">fanatyk dobrego dzwięku i wciągających seriali</strong>.
Uwielbia wizualne eksperymenty z kolorami, fontami oraz geometrią.
</p>
<p class="person__description">
<a class="person__link" href="https://twitter.com/fusserg" target="_blank"
><span class="fab fa-twitter-square fa-2x"></span
></a>
<a class="person__link" href="https://github.com/krzysztof-grodzki" target="_blank">
<span class="fab fa-github-square fa-2x"></span
></a>
<a class="person__link" href="https://www.instagram.com/fusserg" target="_blank"
><span class="fab fa-instagram-square fa-2x"></span
></a>
</p>
</div>
</article>
</main>
</body>
</html>