From 7eac3b8e5e2e66b3df1611b9992cc0e93b997006 Mon Sep 17 00:00:00 2001 From: frosty Date: Fri, 17 May 2024 23:49:32 -0400 Subject: [PATCH] first ok version --- CNAME | 1 + LICENSE | 21 +++++++++++++++++++++ README.md | 3 +++ index.html | 28 ++++++++++++++++++++++++++++ style.css | 18 ++++++++++++++++++ 5 files changed, 71 insertions(+) create mode 100644 CNAME create mode 100644 LICENSE create mode 100644 README.md create mode 100644 index.html create mode 100644 style.css diff --git a/CNAME b/CNAME new file mode 100644 index 0000000..73f1642 --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +www.st0rm.win \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..1c2452f --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 frosty + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..3cf0243 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# www + +Personal website diff --git a/index.html b/index.html new file mode 100644 index 0000000..cdbd4c9 --- /dev/null +++ b/index.html @@ -0,0 +1,28 @@ + + + + + + + + frosty + + + +

frosty

+

Hobbyist developer and Linux enthusiast

+
+

Code

+ +

Hobbies

+ + + + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..9d6b491 --- /dev/null +++ b/style.css @@ -0,0 +1,18 @@ +@media (prefers-color-scheme: dark) { + body { + background-color: black; + color: white; + } + + hr { + color: grey; + } + + a { + color: mediumturquoise; + } + + a:visited { + color: mediumpurple; + } +} \ No newline at end of file