-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (87 loc) · 3.29 KB
/
index.html
File metadata and controls
95 lines (87 loc) · 3.29 KB
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
<!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" />
<!-- HTML Meta Tags -->
<title>Igor Belogurov</title>
<meta name="description" content="Fullstack Web Developer" />
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://belogurovigor.com" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Igor Belogurov" />
<meta property="og:description" content="Fullstack Web Developer" />
<meta
property="og:image"
content="https://belogurovigor.com/img/preview.png"
/>
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="belogurovigor.com" />
<meta property="twitter:url" content="https://belogurovigor.com" />
<meta name="twitter:title" content="Igor Belogurov" />
<meta name="twitter:description" content="Fullstack Web Developer" />
<meta
name="twitter:image"
content="https://belogurovigor.com/img/preview.png"
/>
<!-- Meta Tags Generated via https://www.opengraph.xyz -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@100;300;400&family=Playfair+Display&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-R7N3G3FB99"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-R7N3G3FB99");
</script>
</head>
<body>
<main class="main">
<picture class="avatar">
<source
class="avatar__image"
srcset="img/avatar.webp"
type="image/webp"
/>
<img
class="avatar__image"
src="/img/avatar.jpeg"
alt="Игорь Белогуров"
/>
</picture>
<h1 class="title">Hello, my name is Igor Belogurov</h1>
<article class="description">
<p class="description__text">
I'm Fullstack Web Developer with 5+ years experience.
</p>
<p class="description__text">
Currently I'm based in Stockholm, and work at
<a href="https://storytel.com">Storytel</a> & <a href="https://0x.se">0+X</a>, <s><a href="https://spotify.com">Spotify</a></s>,
<s><a href="https://www.sberbank.ru/en/s_m_business">Sber</a>
Corporate</s>, <s><a href="https://www.amocrm.com">amoCRM</a></s>.
</p>
<p>
You can find me in
<a href="https://github.com/bibblebabl">github</a>,
<a href="https://facebook.com/belogurovigor">facebook</a>,
<a href="https://twitter.com/bibblebabl">twitter</a>,
<a href="https://linkedin.com/in/igor-belogurov-9b059046">linkedin</a
>, <a href="https://t.me/bibblebabl">telegram</a> or write me an
<a href="mailto:belogurovigor@gmail.com">email</a>.
</p>
</article>
</main>
</body>
</html>