-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
38 lines (35 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>George - Software Engineer</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div class="container">
<header></header>
<section id="about">
<p>Hi, my name is George.</p>
<p>I build <span class="crossed-out">distributed systems</span> <span class="crossed-out">compilers</span> payment systems at <span class="crossed-out">SoundCloud</span> <span class="crossed-out">Twitter</span> Reddit.</p>
</section>
<section id="links">
<ul class="icon-links">
<li><a href="cv/GL_CV.pdf" target="_blank"><i class="fas fa-file-alt"></i></a></li>
<li><a href="https://github.com/folone" target="_blank"><i class="fab fa-github"></i></a></li>
<li><a href="https://www.linkedin.com/in/amateur/" target="_blank"><i class="fab fa-linkedin"></i></a></li>
<li><a href="https://www.strava.com/athletes/7428515" target="_blank"><i class="fab fa-strava"></i></a></li>
<li><a href="mailto:(λx.folonexlambda-calcul.us)@"><i class="fas fa-envelope"></i></a></li>
<li><a href="https://keybase.io/folone" target="_blank"><i class="fas fa-lock"></i></a></li>
</ul>
</section>
<footer>
<p>© <span id="year"></span> George Leontiev. All rights reserved.</p>
</footer>
</div>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>