<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

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

    <title>My Website</title>

    <!-- Link to your CSS file -->

    <link rel="stylesheet" href="css/style.css">

</head>

<body>

    <header>

        <h1>Welcome to My Website!</h1>

    </header>

 

    <main>

        <p>This is your homepage. Replace this content with your own.</p>

        <!-- Example image -->

        <img src="images/logo.png" alt="Logo">

    </main>

 

    <footer>

        <p>&copy; 2025 My Website. All rights reserved.</p>

    </footer>

 

    <!-- Link to your JS file -->

    <script src="js/main.js"></script>

</body>

</html>