website

my website
git clone git@git.evenfri.pw:website.git
Log | Files | Refs

commit 86d51ea76dc749d6cd46bf4a4a1fc04b47b3ca63
Author: evenfri <evenfri256@gmail.com>
Date:   Mon, 27 Jul 2026 23:39:12 +0800

initial commit

Diffstat:
Aassets/bi.png | 0
Aassets/pfp.png | 0
Aindex.html | 77+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 77 insertions(+), 0 deletions(-)

diff --git a/assets/bi.png b/assets/bi.png Binary files differ. diff --git a/assets/pfp.png b/assets/pfp.png Binary files differ. diff --git a/index.html b/index.html @@ -0,0 +1,77 @@ +<!DOCTYPE html> +<html lang="en"> +<head> +<meta charset="UTF-8"> +<meta name="viewport" content="width=device-width, initial-scale=1.0"> +<meta http-equiv="X-UA-Compatible" content="ie=edge"> +<title>evenfri</title> +<style> + body { + background-color: #181a1b; + color: #ffffff; + font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; + min-height: 100vh; + margin: 0; + display: flex; + justify-content: center; + align-items: flex-start; + } + + .container { + text-align: center; + margin-top: 2rem; + } + + a { + color: #38bdf8; + text-decoration: none; + } + + a:hover { + text-decoration: underline; + } + + .profile-img { + width: 50%; + max-width: 500px; + height: auto; + border-radius: 8px; + margin: 1rem 0; + } +</style> +</head> +<body> +<div class="container"> + +<h1>evenfri</h1> +<p>&lt;<a id="git-link" href="http://git.evenfri.pw/">src</a>&gt;</p> + +<img src="assets/pfp.png" class="profile-img" alt="profile picture"> + +<div>i use artix btw</div> +<div>i use C btw</div> +<div>i use bspwm btw</div> +<div>i use vim btw</div> +<div>i love femboys btw</div> + +<br><img src="assets/bi.png"></br> + +</div> + +<script> + const link = document.getElementById('git-link'); + const primaryUrl = 'http://git.evenfri.pw/'; + const fallbackUrl = 'http://194.87.232.205/git'; + + const controller = new AbortController(); + const timeoutId = setTimeout(() => controller.abort(), 2000); + + fetch(primaryUrl, { mode: 'no-cors', signal: controller.signal }) + .then(() => clearTimeout(timeoutId)) + .catch(() => { + link.href = fallbackUrl; + }); +</script> + +</body> +</html>