From ffdc01a024b277c051b8beddca04217769adb0ad Mon Sep 17 00:00:00 2001 From: LJ5O <75009579+LJ5O@users.noreply.github.com> Date: Fri, 28 Feb 2025 01:51:23 +0100 Subject: [PATCH] Started to build index --- index.html | 23 +++++++++++++++++++++++ style.css | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 77 insertions(+) create mode 100644 index.html create mode 100644 style.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..e80c0dd --- /dev/null +++ b/index.html @@ -0,0 +1,23 @@ + + + + + + + My Website + + + + +
+
+
+

Random Sentence

+
+

Hello ! I'm

+

AI enthousiast

+
+
+
+ + diff --git a/style.css b/style.css new file mode 100644 index 0000000..721d5b2 --- /dev/null +++ b/style.css @@ -0,0 +1,54 @@ +html, body{ + background-color: #1E1E1E; + margin: 0; + overflow-x: hidden; +} + +h1,h2,h3,h4,h5,p{ + color: #EAEAEA; + /*Family Roboto or Atma ?*/ +} + +.test{ + border: red dotted 2px; +} + +#welcome_div{ + width: 100vw; + min-height: 100vh; + margin: 0; +} + +#random_citation{ + position: absolute; + top: 180px; + left: 65%; + font-size: 2em; + transform:rotate(15deg); +} + +#name_div{ + margin-top: 10%; + margin-left: 15%; + height: fit-content; + width: fit-content; + display: flex; + flex-direction: row; + flex-wrap: wrap; +} + +#profile_picture{ + width: 300px; + height: 300px; +} +#profile_picture img{ + border-radius: 50%; +} + +#welcome_text_div{ + height: 100%; + width: fit-content; +} +#welcome_text_div h1{ + margin-top: 100px; +} \ No newline at end of file