Personal Portfolio Webpage - Build a Personal Portfolio Webpage

Hi … when I run the tests, I keep getting a fail for:
Failed: Your portfolio should contain at least one element with a class of project-tile.

I’m showing the code where I have “class=project-tile” accounted for. Any idea why I keep failing on this criteria?

Your code so far

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

<div class="grid-table">
      <a href="">
        <img src="https://www.ironcrane.com/music/assets/images/autogen/Woody_Cisco_Pete_500w.jpg" alt="Woody, Cisco, Pete" class="image-sample" />
        <p class="project-tile" alt="Tacoma Jam">Blue Muse Roots Jam</p>
    </a>

    <a href="">
        <img src="https://www.ironcrane.com/music/assets/images/autogen/JimmyD_and_Friends-001.jpg" alt="Jimmy and friends" class="image-sample" />
        <p class="project-tile" alt="Tacoma Jam">Blue Muse Roots Jam</p>
    </a>

    <a href="">
        <img src="https://www.ironcrane.com/music/assets/images/autogen/WoodyPointsSKBK4resize.jpg" alt="Woody" class="image-sample" />
        <p class="project-tile" alt="Tacoma Jam">Blue Muse Roots Jam</p>
    </a>

    <a href="">
        <img src="https://www.ironcrane.com/music/assets/images/autogen/Harp_Art-001.jpg" alt="Art" class="image-sample" />
        <p class="project-tile" alt="Tacoma Jam">Blue Muse Roots Jam</p>
    </a>

    <a href="">
        <img src="https://www.ironcrane.com/music/assets/images/autogen/Suzy_T-001.jpg" alt="Suzy" class="image-sample" />
        <p class="project-tile" alt="Tacoma Jam">Blue Muse Roots Jam</p>
   </a>

    <a href="">
        <img src="https://www.ironcrane.com/music/assets/images/autogen/WilliamsReduxSKBP50.jpg" alt="Warner" class="image-sample" />
        <p class="project-tile" alt="Tacoma Jam">Blue Muse Roots Jam</p>
    </a>
    </div>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0

Challenge: Personal Portfolio Webpage - Build a Personal Portfolio Webpage

Link to the challenge:

Post the entire html and css code here.

Thanks for your followup. I solved the problem by closely reading the criteria and making a correction in naming the parent element.

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