From 63017dcd98d8f401bd5d07dfa854f0a7c930882f Mon Sep 17 00:00:00 2001 From: unlxam Date: Thu, 18 Apr 2024 15:00:25 -0300 Subject: [PATCH] Add: basic html and css --- css/style.css | 33 +++++++++++++++++++++++++++++++++ index.html | 28 ++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+) create mode 100755 css/style.css create mode 100644 index.html diff --git a/css/style.css b/css/style.css new file mode 100755 index 0000000..108e615 --- /dev/null +++ b/css/style.css @@ -0,0 +1,33 @@ +* { + margin: 0; + padding: 0; + list-style: none; + text-decoration: none; +} + +main { + margin: 30px 20px; + text-align: center; +} + +body { + background: rgb(35, 35, 35); + color: white; +} + +#header { + padding: 20px 0; + text-align: center; + background: rgb(45, 45, 45); +} + +#footer { + position: absolute; + bottom: 0; + width: 100%; + height: 50px; + line-height: 50px; + background: rgb(45, 45, 45); + color: rgb(127, 127, 127); + text-align: right; +} diff --git a/index.html b/index.html new file mode 100644 index 0000000..a355bcf --- /dev/null +++ b/index.html @@ -0,0 +1,28 @@ + + + + + + + hello + + + +
+
+

This is my website.

+

For now, there's nothing on it, but someday will have. Hopefully will not take long for it.

+

Meanwhile, you can check my Forgejo instance (which also has nothing).

+
+
+ + +