<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>My Cute Website</title>
    <!-- Link to the CSS file -->
    <link rel="stylesheet" href="style.css">
    <!-- Import a cute font from Google Fonts -->
    <link href="https://fonts.googleapis.com" rel="stylesheet">
</head>
<body>
    <header>
        <h1>Welcome to My Cute Corner! 💖</h1>
    </header>

    <main>
        <section class="card">
            <h2>About Me</h2>
            <p>Hi there! This is a simple, cute website made with HTML and CSS. I love pastel colors and happy things!</p>
        </section>

        <section class="card">
            <h2>Things I Like</h2>
            <ul>
                <li>Fluffy animals</li>
                <li>Cloud gazing</li>
                <li>Coding cute websites</li>
            </ul>
        </section>
    </main>

    <footer>
        <p>&copy; 2026 A Cute Website</p>
    </footer>
</body>
</html>
