summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authoryuzu-eva <stevenhu@web.de>2023-03-20 15:02:41 +0100
committeryuzu-eva <stevenhu@web.de>2023-03-20 15:02:41 +0100
commit6d919f453fd39a96f3999f5249aa3a17fe5740d6 (patch)
treea1594b18f35ffbfd1aee7c62a4bca9f05cea5182 /index.html
parentbc7eb37e99fb1449baef62a981e3c6e9fe50208c (diff)
odin project links and images
Diffstat (limited to 'index.html')
-rw-r--r--index.html55
1 files changed, 52 insertions, 3 deletions
diff --git a/index.html b/index.html
index 3214cf5..389c3ec 100644
--- a/index.html
+++ b/index.html
@@ -5,13 +5,62 @@
<title>yuzu-eva's odin project</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=devide-width,initial-scale=1">
- <link rel="stylesheet" href="styles/style.css">
+ <link rel="stylesheet" href="static/style.css">
</head>
<body>
- <div>
+ <header>
+ <nav>
+ <ul>
+ <li>
+ <a href="index.html">Home</a>
+ </li>
+ <li>
+ <a href="static/about.html">About</a>
+ </li>
+ </ul>
+ </nav>
+
<h1>Hello, World!</h1>
- </div>
+ <p>... and everyone in it.</p>
+ <a href="https://wiby.me/surprise">Link to a random website</a>
+ </header>
+
+ <main>
+ <div id="lists">
+ <h3>favourite foods:</h3>
+ <ul>
+ <li>steak</li>
+ <li>cheese</li>
+ <li>rice</li>
+ <li>tortillas</li>
+ <li>salmon</li>
+ </ul>
+
+ <br>
+
+ <h3>todo list:</h3>
+ <ol>
+ <li>Finish Part 1 of Odin Project</li>
+ <li>Cook something with leftover rice</li>
+ <li>Read some more One Piece</li>
+ </ol>
+
+ <br>
+
+ <h3>favourite video games:</h3>
+ <ol>
+ <li>Monster Hunter 4 Ultimate</li>
+ <li>Fallout: New Vegas</li>
+ <li>Final Fantasy X</li>
+ <li>The Legend of Zelda: Majora's Mask</li>
+ <li>The Binding of Isaac</li>
+ </ol>
+ </div>
+ <div id="img-wrapper">
+ <img src="./images/dog.jpg" alt="This is a cute picture of a dog">
+ </div>
+ </main>
</body>
<script src=""></script>