From bc7eb37e99fb1449baef62a981e3c6e9fe50208c Mon Sep 17 00:00:00 2001 From: yuzu-eva Date: Mon, 20 Mar 2023 13:58:01 +0100 Subject: initial commit --- README.md | 3 +++ index.html | 18 ++++++++++++++++++ styles/style.css | 8 ++++++++ 3 files changed, 29 insertions(+) create mode 100644 README.md create mode 100644 index.html create mode 100644 styles/style.css diff --git a/README.md b/README.md new file mode 100644 index 0000000..b6482fa --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# The Odin Project + +This is my repository for The Odin Project online course. diff --git a/index.html b/index.html new file mode 100644 index 0000000..3214cf5 --- /dev/null +++ b/index.html @@ -0,0 +1,18 @@ + + + + + yuzu-eva's odin project + + + + + + +
+

Hello, World!

+
+ + + + diff --git a/styles/style.css b/styles/style.css new file mode 100644 index 0000000..4ea6483 --- /dev/null +++ b/styles/style.css @@ -0,0 +1,8 @@ +html { + background: black; + font-family: 'Open Sans', sans-serif; +} + +body { + color: white; +} -- cgit v1.2.3