summaryrefslogtreecommitdiff
path: root/index.html
blob: 58d5a85e0bf2d6a18ed2694db5770c3b595aa606 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en-US">

<head>
    <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="static/style.css">
    <link rel="icon" type="image/x-icon" href="images/favicon.ico" sizes="16x16">

</head>

<body>
    <header>
        <nav>
            <ul>
                <li>
                    <a href="index.html">Home</a>
                </li>
                <li>
                    <a href="static/about.html">About</a>
                </li>
                <li>
                    <a href="static/recipes/overview.html">Recipes</a>
                </li>
            </ul>
        </nav>

        <h1>Hello, World!</h1>
        <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/big-dick.jpg" alt="This is a picture of Konata from Lucky Star with a hoodie that says 'big dick is back in town'"> 
        </div>
    </main>
</body>
<script src=""></script>

</html>