summaryrefslogtreecommitdiff
path: root/static/about.html
blob: 5608c2572c1fee45ddfb68a34db1779ca463de54 (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
<!DOCTYPE html>
<html lang="en-US">

<head>
    <title>About yuzu-eva's odin project</title>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=devide-width,initial-scale=1">
    <link rel="stylesheet" href="./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="./about.html">About</a>
                </li>
                <li>
                    <a href="./recipes/overview.html">Recipes</a>
                </li>
            </ul>
        </nav>
    </header>

    <div id="headerwrapper">
        <h1>About this Website</h1>
    </div>

    <main id="wrapper-center">
        <p>
            This website will contain all projects related to The
            Odin Project online course.
        </p>
    </main>
</body>
<script src=""></script>

</html>