seperate style file

This commit is contained in:
DeaDvey 2024-12-23 15:36:20 +00:00
parent ada18b803f
commit 6d37ba68c9
2 changed files with 59 additions and 61 deletions

18
index.css Normal file
View File

@ -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;
}

View File

@ -1,5 +1,8 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="/index.css">
</head>
<pre>
__ __ __
@ -40,27 +43,4 @@ Join us:<br/>
<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>
</html>