summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRevaz Nakhutsrishvili <r@revaz.xyz>2024-11-22 19:23:24 +0400
committerRevaz Nakhutsrishvili <r@revaz.xyz>2024-11-22 19:23:24 +0400
commit565706d88b103e163cc2aadd1fa08e25f382b717 (patch)
tree2b4604fe98087e74079ad86af1417d4eb07d3568
feat: basic webpageHEADmaster
-rw-r--r--index.html78
1 files changed, 78 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..6892ff3
--- /dev/null
+++ b/index.html
@@ -0,0 +1,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>