From 6d37ba68c96840fb35f1403ef6e5435adc2d0fcb Mon Sep 17 00:00:00 2001 From: DeaDvey <deadvey@deadvey.com> Date: Mon, 23 Dec 2024 15:36:20 +0000 Subject: [PATCH] seperate style file --- index.css | 18 ++++++++++ index.html | 102 +++++++++++++++++++++-------------------------------- 2 files changed, 59 insertions(+), 61 deletions(-) create mode 100644 index.css diff --git a/index.css b/index.css new file mode 100644 index 0000000..292f9a2 --- /dev/null +++ b/index.css @@ -0,0 +1,18 @@ +body { + background: #000000; + color: #00ff00; +} +.tuxcord-image { + position: absolute; + top: 0; + left: 650px; +} +a:link { + color: cyan; +} +a:visited { + color: violet; +} +a:hover { + color: yellow; +} diff --git a/index.html b/index.html index 7f2ac84..debd7f3 100755 --- a/index.html +++ b/index.html @@ -1,66 +1,46 @@ -<head> - <meta charset="UTF-8" /> -</head> -<pre> - __ __ __ -/\ \__ /\ \ /\ \__ -\ \ ,_\ __ __ __ _ ___ ___ _ __ \_\ \ ___ __\ \ ,_\ - \ \ \/ /\ \/\ \/\ \/'\ /'___\ / __`\/\`'__\/'_` \ /' _ `\ /'__`\ \ \/ - \ \ \_\ \ \_\ \/> <//\ \__//\ \L\ \ \ \//\ \L\ \ __/\ \/\ \/\ __/\ \ \_ - \ \__\\ \____//\_/\_\ \____\ \____/\ \_\\ \___,_\/\_\ \_\ \_\ \____\\ \__\ - \/__/ \/___/ \//\/_/\/____/\/___/ \/_/ \/__,_ /\/_/\/_/\/_/\/____/ \/__/ +<!DOCTYPE html> +<html> + <head> + <meta charset="UTF-8" /> + <link rel="stylesheet" href="/index.css"> + </head> + <pre> + __ __ __ + /\ \__ /\ \ /\ \__ + \ \ ,_\ __ __ __ _ ___ ___ _ __ \_\ \ ___ __\ \ ,_\ + \ \ \/ /\ \/\ \/\ \/'\ /'___\ / __`\/\`'__\/'_` \ /' _ `\ /'__`\ \ \/ + \ \ \_\ \ \_\ \/> <//\ \__//\ \L\ \ \ \//\ \L\ \ __/\ \/\ \/\ __/\ \ \_ + \ \__\\ \____//\_/\_\ \____\ \____/\ \_\\ \___,_\/\_\ \_\ \_\ \____\\ \__\ + \/__/ \/___/ \//\/_/\/____/\/___/ \/_/ \/__,_ /\/_/\/_/\/_/\/____/ \/__/ -</pre> + </pre> -Services we provide:<br/> -<ul> - <li> - <a href="https://mastodon.tuxcord.net">Mastodon</a> - </li> - <li> - <a href="https://git.javalsai.dynv6.net">Gitea</a> - </li> - <li> - <a href="https://redlib.tuxcord.net">Redlib</a> - </li> -</ul> -Join us:<br/> -<ul> - <li> - <a href="https://matrix.to/#/!BEyFZOZpWRoRrhRJbp:matrix.org?via=matrix.org&via=t2bot.io&via=envs.net">Matrix</a> - </li> - <li> - <a href="https://discord.gg/SPHymEDytw">Discord</a> - </li> - <li> - irc.tuxcord.net - </li> -</ul> + Services we provide:<br/> + <ul> + <li> + <a href="https://mastodon.tuxcord.net">Mastodon</a> + </li> + <li> + <a href="https://git.javalsai.dynv6.net">Gitea</a> + </li> + <li> + <a href="https://redlib.tuxcord.net">Redlib</a> + </li> + </ul> + Join us:<br/> + <ul> + <li> + <a href="https://matrix.to/#/!BEyFZOZpWRoRrhRJbp:matrix.org?via=matrix.org&via=t2bot.io&via=envs.net">Matrix</a> + </li> + <li> + <a href="https://discord.gg/SPHymEDytw">Discord</a> + </li> + <li> + irc.tuxcord.net + </li> + </ul> -<img src="tuxcord.png" class="tuxcord-image" width="200"> - - - - -<style> - body { - background: #000000; - color: #00ff00; - } - .tuxcord-image { - position: absolute; - top: 0; - left: 550; - } - a:link { - color: cyan; - } - a:visited { - color: violet; - } - a:hover { - color: yellow; - } -</style> + <img src="tuxcord.png" class="tuxcord-image" width="200"> +</html>