<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Zander Visser - Mechanical Engineering Portfolio</title>

    <style>

        body {

            font-family: Arial, sans-serif;

            line-height: 1.6;

            margin: 0;

            padding: 0;

        }

        header {

            background-color: #333;

            color: #fff;

            text-align: center;

            padding: 1rem;

        }

        nav {

            background-color: #444;

            color: #fff;

            padding: 0.5rem;

        }

        nav ul {

            list-style-type: none;

            padding: 0;

        }

        nav ul li {

            display: inline;

            margin-right: 10px;

        }

        nav ul li a {

            color: #fff;

            text-decoration: none;

        }

        .container {

            width: 80%;

            margin: auto;

            overflow: hidden;

            padding: 20px;

        }

        .project {

            background-color: #f4f4f4;

            border: 1px solid #ccc;

            padding: 15px;

            margin-bottom: 20px;

        }

    </style>

</head>

<body>

    <header>

        <h1>Zander Visser</h1>

        <p>Mechanical Engineering Student | Minor in Economics</p>

    </header>


    <nav>

        <ul>

            <li><a href="#about">About</a></li>

            <li><a href="#projects">Projects</a></li>

            <li><a href="#skills">Skills</a></li>

            <li><a href="#contact">Contact</a></li>

        </ul>

    </nav>


    <div class="container">

        <section id="about">

            <h2>About Me</h2>

            <p>I am a mechanical engineering student with a minor in economics, set to graduate in 2026. I am passionate about combining engineering principles with economic insights to create innovative solutions.</p>

        </section>


        <section id="projects">

            <h2>Projects</h2>

            <div class="project">

                <h3>Project 1</h3>

                <p>Description of your first project goes here.</p>

            </div>

            <div class="project">

                <h3>Project 2</h3>

                <p>Description of your second project goes here.</p>

            </div>

            <!-- Add more projects as needed -->

        </section>


        <section id="skills">

            <h2>Skills</h2>

            <ul>

                <li>CAD Software (e.g., SolidWorks, AutoCAD)</li>

                <li>3D Printing</li>

                <li>Finite Element Analysis</li>

                <li>Economic Analysis</li>

                <!-- Add more skills as needed -->

            </ul>

        </section>


        <section id="contact">

            <h2>Contact</h2>

            <p>Email: zander.visser@example.com</p>

            <p>LinkedIn: linkedin.com/in/zandervisser</p>

            <!-- Add more contact information as needed -->

        </section>

    </div>

</body>

</html>