<!DOCTYPE html>

<html>

<head>

    <title>My Website</title>

    <link rel="stylesheet" type="text/css" href="styles.css">

</head>

<body>

    <header>

        <nav>

            <ul>

                <li><a href="#">Home</a></li>

                <li><a href="#">Products</a></li>

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

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

            </ul>

        </nav>

    </header>

    <main>

        <section class="hero">

            <h1>Welcome to My Website</h1>

            <p>Experience the future of technology today.</p>

        </section>

    </main>

</body>

</html>