aboutsummaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorPolesznyák Márk <contact@pml68.dev>2025-09-25 01:39:56 +0200
committerPolesznyák Márk <contact@pml68.dev>2025-09-25 01:39:56 +0200
commitc0af3a63d6cd7b893ca23aeb442e776955bc2c91 (patch)
tree0fec30f2bc12503e6095271dd32159322355c5c6 /index.html
parentfix: incorrect social link hover color transition (diff)
downloadpml68.dev-c0af3a63d6cd7b893ca23aeb442e776955bc2c91.tar.gz
feat: "rewrite" in pure HTML/CSS
Diffstat (limited to 'index.html')
-rw-r--r--index.html53
1 files changed, 53 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..07b69e2
--- /dev/null
+++ b/index.html
@@ -0,0 +1,53 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <link rel="icon" href="/assets/pml68.png">
+ <link rel="stylesheet" href="/style.css">
+ <title>pml68</title>
+ </head>
+
+ <body>
+ <img src="/assets/wave1.svg" alt="Wave decoration" class="wave wave1">
+ <img src="/assets/wave2.svg" alt="Wave decoration" class="wave wave2">
+
+ <div class="container">
+ <div class="main">
+ <h1>pml68</h1>
+ <p>Just your average IT student</p>
+ <div class="socials">
+ <a href="https://github.com/pml68" class="icon" target="_blank" aria-label="GitHub">
+ <svg class="social-icon" viewbox="0 0 512 512">
+ <use href="/assets/github.svg#github"></use>
+ </svg>
+ </a>
+ <a href="https://sr.ht/~pml68" class="icon" target="_blank" aria-label="Sourcehut">
+ <svg class="social-icon" viewbox="0 0 512 512">
+ <use href="/assets/sourcehut.svg#sourcehut"></use>
+ </svg>
+ </a>
+ <a href="https://dev.to/pml68" class="icon" target="_blank" aria-label="DEV.to">
+ <svg class="social-icon" viewbox="0 0 512 512">
+ <use href="/assets/dev.svg#dev"></use>
+ </svg>
+ </a>
+ <a href="https://t.me/pml68_1" class="icon" target="_blank" aria-label="Telegram">
+ <svg class="social-icon" viewbox="0 0 512 512">
+ <use href="/assets/telegram.svg#telegram"></use>
+ </svg>
+ </a>
+ <a href="mailto:contact@pml68.dev" class="icon" target="_blank" aria-label="Email">
+ <svg class="social-icon" viewbox="0 0 512 512">
+ <use href="/assets/email.svg#email"></use>
+ </svg>
+ </a>
+ </div>
+ <br>
+ <div>
+ Check out my projects <a href="/projects"><b>here</b></a>
+ </div>
+ </div>
+ </div>
+ </body>
+</html>