Design a Business Card - Design a Business Card

Tell us what’s happening:

I can’t access the styles.css editor. Index.html editor works perfectly fine. I can even click to submit and get check marks on my html code but I can’t up my css in the css editor.

Your code so far

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Designer Card</title>

        <link rel="stylesheet" href="styles.css">
    </head>
    <body>
        <div class="business-card">
            <img src="https://cdn.freecodecamp.org/curriculum/labs/flower.jpg" alt="A pink flower with a long green stem." class="profile-image">
            <p class="full-name">Jazzy B.</p>
            <p class="designation">Full Stack Developer</p>
            <p class="company">Software Consultant</p>
            <hr>
            <p>abc123@email.com</p>
            <p>555-555-5555</p>
            <a href="http://vercel.com/jazzyb" class="portfolio-link">Portfolio</a>
            <hr>
            <div class="social-media">
                <h2>Connect with me</h2>
                <a href="http://twitter.com">Twitter</a>
                <a href="http://LinkedIn.com">LinkedIn</a>
                <a href="http://github.com">GitHub</a>
            </div>

        </div>
        
    </body>
</html>
/* file: styles.css */

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36

Challenge Information:

Design a Business Card - Design a Business Card

Welcome back to the forum @JakNJills

The CSS editor is working for me.

Try refreshing the page, clearing the cache.

If that doesn’t work, try adding the styles in a style element.

Happy coding

1 Like

Thank you so much for your help. I had to empty my cache and change my zoom in percentage.

1 Like