From 6d919f453fd39a96f3999f5249aa3a17fe5740d6 Mon Sep 17 00:00:00 2001 From: yuzu-eva Date: Mon, 20 Mar 2023 15:02:41 +0100 Subject: odin project links and images --- images/dog.jpg | Bin 0 -> 1021417 bytes index.html | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++--- static/about.html | 35 ++++++++++++++++++++++++++++++++++ static/style.css | 54 +++++++++++++++++++++++++++++++++++++++++++++++++++++ styles/style.css | 8 -------- 5 files changed, 141 insertions(+), 11 deletions(-) create mode 100644 images/dog.jpg create mode 100644 static/about.html create mode 100644 static/style.css delete mode 100644 styles/style.css diff --git a/images/dog.jpg b/images/dog.jpg new file mode 100644 index 0000000..a236a64 Binary files /dev/null and b/images/dog.jpg differ diff --git a/index.html b/index.html index 3214cf5..389c3ec 100644 --- a/index.html +++ b/index.html @@ -5,13 +5,62 @@ yuzu-eva's odin project - + -
+
+ +

Hello, World!

-
+

... and everyone in it.

+ Link to a random website + + +
+
+

favourite foods:

+
    +
  • steak
  • +
  • cheese
  • +
  • rice
  • +
  • tortillas
  • +
  • salmon
  • +
+ +
+ +

todo list:

+
    +
  1. Finish Part 1 of Odin Project
  2. +
  3. Cook something with leftover rice
  4. +
  5. Read some more One Piece
  6. +
+ +
+ +

favourite video games:

+
    +
  1. Monster Hunter 4 Ultimate
  2. +
  3. Fallout: New Vegas
  4. +
  5. Final Fantasy X
  6. +
  7. The Legend of Zelda: Majora's Mask
  8. +
  9. The Binding of Isaac
  10. +
+
+
+ This is a cute picture of a dog +
+
diff --git a/static/about.html b/static/about.html new file mode 100644 index 0000000..a7d2cff --- /dev/null +++ b/static/about.html @@ -0,0 +1,35 @@ + + + + + Website About + + + + + + +
+ +

About this Website

+ +

+ This website will contain all projects related to The + Odin Project online course. +

+
+
+
+ + + + diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..032e2ce --- /dev/null +++ b/static/style.css @@ -0,0 +1,54 @@ +html { + background: black; + font-family: 'Open Sans', sans-serif; +} + +body { + color: white; +} + +header { + text-align: center; +} + +main { + padding-top: 2%; +} + +nav ul li a { + color: #f1f3f3; + font-size: smaller; +} + +nav ul { + margin: 0; + padding: 0; +} + +nav li { + display: inline-block; + list-style-type: none; +} + +nav a { + text-decoration: none; + display: block; + padding: 5px 6px 5px 6px; + color: black; +} + +#lists { + float: left; + padding-left: 10%; + max-width: 70%; +} + +#img-wrapper { + float: right; + padding-right: 10%; + max-width: 30%; +} + +img { + max-height: 500px; +} diff --git a/styles/style.css b/styles/style.css deleted file mode 100644 index 4ea6483..0000000 --- a/styles/style.css +++ /dev/null @@ -1,8 +0,0 @@ -html { - background: black; - font-family: 'Open Sans', sans-serif; -} - -body { - color: white; -} -- cgit v1.2.3