website

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

commit c11c9d03264ce6ec90c50c2de69cf4592f0ce69c
parent 955938b2af7875d31d2eaa2fecf349481bde983f
Author: evenfri <evenfri256@gmail.com>
Date:   Tue, 28 Jul 2026 00:04:50 +0800

update

Diffstat:
Mindex.html | 84+++++++++++++++++++++++++------------------------------------------------------
Astyle.css | 14++++++++++++++
2 files changed, 40 insertions(+), 58 deletions(-)

diff --git a/index.html b/index.html @@ -2,78 +2,46 @@ <html lang="en"> <head> <meta charset="UTF-8"> -<meta name="viewport" content="width=device-width, initial-scale=1.0"> +<meta name="viewport" content="width=1024, initial-scale=0.1"> <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> +<link rel="stylesheet" href="style.css"> </head> + <body> +<center> <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"> +<img src="assets/pfp.png" width="50%" 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> -<div></div> -<div>my beloved friend (telegram): @Laneks_143</div> +<br>i use artix btw<br> +i use C btw<br> +i use bspwm btw<br> +i use vim btw<br> +i love femboys btw<br><br> +my beloved girl friend (telegram): @Laneks_143<br><br> -<br><img src="assets/bi.png"></br> +<img src="assets/bi.png"> </div> +</center> +</body> <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; - }); +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> diff --git a/style.css b/style.css @@ -0,0 +1,14 @@ +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; +} +