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

<head>
    <title>Recipes Overview</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="./overview.html">Recipes</a>
                </li>
                <li>
                    <a href="../rock-paper-scissors.html">Rock Paper Scissors</a>
                </li>
            </ul>
        </nav>

    </header>

    <div id="headerwrapper">
        <h1>My Top Recipes!</h1>
    </div>

    <main>
        <ul class="recipe-list">
            <li class="recipe-item">
                <a href="./pizza.html">Pizza</a>
            </li>
            <li class="recipe-item">
                <a href="./oyakodon.html">Oyakodon</a>
            </li>
            <li class="recipe-item">
                <a href="./omurice.html">Omurice</a>
            </li>
        </ul>
    </main>

    <footer>
        <div class="wrapper-centered">
            <p>Bottom Text</p> 
        </div>
    </footer>
</body>
<script src=""></script>

</html>