blob: 6892ff3509fcd727a61595269a7ba1c99d086b59 (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="canonical" href="https://revaz.xyz" />
<title>Revaz Nakhutsrishvili</title>
<meta name="title" content="Revaz Nakhutsrishvili" />
<meta name="description" content="Welcome to my site!" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Barlow:wght@400;500&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
}
body {
display: flex;
justify-content: space-around;
align-items: center;
height: 100vh;
width: 100vw;
font-size: 20px;
}
main {
text-align: left;
display: flex;
flex-direction: column;
gap: 20px;
}
a {
color: #2446EF;
}
a:hover {
text-decoration: none;
}
.barlow-regular {
font-family: "Barlow", sans-serif;
font-weight: 400;
font-style: normal;
}
.barlow-medium {
font-family: "Barlow", sans-serif;
font-weight: 500;
font-style: normal;
}
</style>
</head>
<body class="barlow-regular">
<main>
<section>
<h1 class="barlow-medium">Revaz Nakhutsrishvili</h1>
<p>Software Engineer | Full-Stack</p>
</section>
<section class="barlow-medium">
<a target="_blank" href="https://revaz.xyz/resume.pdf">Resume</a>
<a target="_blank" href="https://git.revaz.xyz">Git</a>
<a target="_blank" href="https://github.com/R3V4Z">GitHub</a>
<a target="_blank" href="https://www.linkedin.com/in/revaznakhutsrishvili">LinkedIn</a>
</section>
<section>
<p>Hi there ~</p>
</section>
</main>
</body>
</html>
|