From 8bd3fa09126b1399b77b45109b1beccab8b98066 Mon Sep 17 00:00:00 2001 From: Rylie Mentzer Date: Sat, 14 Feb 2026 23:55:55 +0100 Subject: [PATCH] Initial Upload --- index.html | 12 ++++++++++++ learning/index.html | 19 +++++++++++++++++++ learning/style.css | 30 ++++++++++++++++++++++++++++++ 3 files changed, 61 insertions(+) create mode 100644 index.html create mode 100644 learning/index.html create mode 100644 learning/style.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..e60f86b --- /dev/null +++ b/index.html @@ -0,0 +1,12 @@ + + + + + + + + + \ No newline at end of file diff --git a/learning/index.html b/learning/index.html new file mode 100644 index 0000000..68995fe --- /dev/null +++ b/learning/index.html @@ -0,0 +1,19 @@ + + + + + + + +

Rylie's Website

+

About Me

+

meep

+

Hobbies

+

moop

+

Favorite Games

+

ur mom

+ Go Home + + + + diff --git a/learning/style.css b/learning/style.css new file mode 100644 index 0000000..2073480 --- /dev/null +++ b/learning/style.css @@ -0,0 +1,30 @@ +h1, h2, h3{ + text-align: center; +} + +p { + text-align: left; + margin-bottom: 20px; +} + +body { + background-color: rebeccapurple; +} + +.home-button { + display: inline-block; + padding: 10px 20px; + background-color: #d9a2f3; + color: #060009; + text-decoration: none; + border-radius: 5px; + transition: background-color 0.3s; + margin-top: 200px; + margin-bottom: 100px; + +} + +.home-button:hover { + background-color: rgb(0, 0, 12); + color: #d9a2f3; +}