-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
106 lines (87 loc) · 3.52 KB
/
about.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
100
101
102
103
104
105
106
<!doctype html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=David+Libre|Hind:400,700" rel="stylesheet">
<link rel="stylesheet" href="./fonts/Serif/cmun-serif.css" />
<link rel="stylesheet" href="./fonts/Serif-Slanted/cmun-serif-slanted.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/default.css">
<link rel="stylesheet" href="css/nav_bar.css">
<link rel="stylesheet" href="css/about.css">
<link rel="stylesheet" href="css/footer.css">
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-143270978-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-143270978-1');
</script>
<link rel="shortcut icon" href="./data/icons/Icon.ico" />
<title>Igor's Tech Blog</title>
</head>
<body>
<header class="header">
<div class="logo">
<a href="./index.html" title="Home">
<img src="data/vector/logo.svg" alt="Home">
</a>
</div>
<nav class="navigation">
<a href="#navigation" class="nav-trigger">
<span><em aria-hidden="true"></em></span>
</a>
<ul>
<li><a href="./archives.html">Archives</a></li>
<li><a href="./about.html">About</a></li>
</ul>
</nav>
</header>
<main>
<div class="about-header">
<h1>Igor Poletaev</h1>
<h4>Software Engineer, Machine Learning Enthusiast</h4>
</div>
<div class="photo">
<div class="background">
</div>
</div>
<div class="about-wrapper">
<div class="about">
<div class="socials">
<ul>
<li class="twitter">
<a href="https://twitter.com/iepoletaev"><i class="fa fa-twitter fa-2x" aria-hidden="true"></i></a>
</li>
<li class="linkedin">
<a href="https://www.linkedin.com/in/ipoletaev"><i class="fa fa-linkedin fa-2x" aria-hidden="true"></i></a>
</li>
<li class="github">
<a href="https://github.com/ipoletaev"><i class="fa fa-github fa-2x" aria-hidden="true"></i></a>
</li>
</ul>
</div>
<div class="text">
<p>
I am a software engineer graduated from the
<a href="https://english.nsu.ru/">NSU</a> Physics Department that occasionally publish posts about Machine Learning, Mathematics, Programming, Physics, or anything else that is interesting to me.
</p>
<p>
The opinions expressed on this blog are personal views and do not reflect the opinion of my employer.
</p>
</div>
<div class="buttons">
<a href=mailto:[email protected] class="button">Contact me</a>
</div>
</div>
</div>
</main>
<div class="footer"></div>
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="js/main.js"></script>
</body>
</html>