Please am stuck in Step 9 for days

<div class="author">
          <div class="social-icons">
            <a href="https://www.facebook.com/freecodecamp"/></a>
             <a href="https://twitter.com/freecodecamp"/></a>
             <a href="https://instagram.com/freecodecamp"/></a>
             <a href="https://www.linkedin.com/school/free-code-camp"/></a>
             <a href="https://www.youtube.com/freecodecamp"/></a>
          </div>          
          <p class="author-name"> 

ancho tags “< a >” are self closing and you dont use forward slash “/” in the opening tags

Thanks l forgot to include it but l had removed it yet it doesn’t work stil

 <div class="social-icons">
            <a href="https://www.facebook.com/freecodecamp"></a>
             <a href="https://twitter.com/freecodecamp"></a>
             <a href="https://instagram.com/freecodecamp"></a>
             <a href="https://www.linkedin.com/school/free-code-camp"></a>
             <a href="https://www.youtube.com/freecodecamp"></a>
          </div>

I am not sure what you are working on.

Step 9 of what?

Can you provide a link to the challenge or project you are working on? :+1:

2 Likes

You should not put your code inside the

div class=“author”

Try putting the social-icons div below the author div close tag

 <div class="author">
          <div class="social-icons">
            <a href="https://www.facebook.com/freecodecamp"></a>
             <a href="https://twitter.com/freecodecamp"></a>
             <a href="https://instagram.com/freecodecamp"></a>
             <a href="https://www.linkedin.com/school/free-code-camp"></a>
             <a href="https://www.youtube.com/freecodecamp"></a>
          </div>          
          <p class="author-name">
Thanks
Learn CSS grid by Building  a Magazine

[solution redacted]
Below the div class=“author” close tag, not inside

Thanks , just foolish mistake l made .

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.