-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (65 loc) · 2 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Business card</title>
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto&display=swap"
rel="stylesheet"
/>
</head>
<body>
<main class="main">
<div class="card">
<img
class="card__picture"
src="img/me_web_size.jpg"
alt="Profile picture"
/>
<div class="card__text-container">
<header class="card__header">
<h1 class="card__heading">Daniel Konnek</h1>
<p class="card__specialization">frontend dev</p>
</header>
<p class="card__description card__description--with-margin">
Programmer with
<span class="important-text">months of experience</span>,
photographer, motion designer, sporty guy, that
<span class="important-text">own a cat</span>. Really excited about
new technologies, gadgets and food. By the way loves food so much.
</p>
<p class="card__description">
Socials:
<a
href="https://www.facebook.com/ac.konneki"
target="_blank"
class="card__link"
>Facebook</a
>,
<a
href="https://github.com/konneki"
target="_blank"
class="card__link"
>GitHub</a
>,
<a
href="https://www.instagram.com/konneki/"
target="_blank"
class="card__link"
>Instagram</a
>,
<a
href="https://www.behance.net/konneki_"
target="_blank"
class="card__link"
>Behance</a
>.
</p>
</div>
</div>
</main>
</body>
</html>