Untitled

 avatar
unknown
html
7 days ago
1.5 kB
3
Indexable
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Assignments</title>
    <link rel="stylesheet" href="style.css">
</head>

<body>
    <!-- Centered content -->
    <div class="content" style="height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;">
        <div>
            <!-- Centered menu -->
            <nav class="centered-menu">
                <ul>
                    <li><a href="index.html">HOME</a></li>
                    <li><a href="about.html">ABOUT</a></li>
                </ul>
            </nav>
            <h1>ASSIGNMENTS</h1>
            <p>Here, you can find a complete list of all the assignments, organized for your convenience :-)</p>

            <!-- Centered list of assignments -->
            <nav class="centered-menu">
                <ul>
                    <li><a href="one.html">ASSIGNMENT 01</a></li>
                    <li><a href="two.html">ASSIGNMENT 02</a></li>
                </ul>
                <ul>
                    <li><a href="three.html">ASSIGNMENT 03</a></li>
                    <li><a href="four.html">ASSIGNMENT 04</a></li>
                </ul>
            </nav>
        </div>
    </div>

    <!-- Footer -->
    <footer>
        <p>Digital Fabrication I. 2025</p>
        <p>Adela Lujza Lučenič</p>
        <pre class="cat">
 /\_/\
 ( o.o )
 > ^ <
            </pre>
    </footer>

</body>

</html>
Leave a Comment