Responsive Web Design Projects - Build a Personal Portfolio Webpage

Tell us what’s happening:

“Your portfolio should contain at least one element with a class of project-tile .”

I am unable to understand what I am doing wrong here.

(To improve readability I have only inserted a snippet of code.)

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 id="projects">
      <div class="project-title"> <!-- "project-box" -->
        <img
          class="project-image"
          src="https://media.istockphoto.com/photos/road-in-mountains-picture-id491712724"
          alt="Project Image"
        />
        <div class="box-title">Title of the project</div> <!-- "project-title" -->
        <div class="project-content">
          <p>
            Lorem ipsum dolor sit amet consectetur adipisicing elit. Pariatur
            inventore corrupti, debitis modi quibusdam tenetur.
          </p>
          <p>Iusto voluptatibus corporis excepturi.</p>
          <p>
            Eius porro sit excepturi incidunt ducimus architecto commodi hic
            quisquam pariatur!
          </p>
        </div>
        <div class="project-info">
          <a href="#" class="more-info">View project</a>
        </div>
      </div>
</div>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36

Challenge: Responsive Web Design Projects - Build a Personal Portfolio Webpage

Link to the challenge:

they are not the same class name

I have never felt so silly. Thanks a bunch.

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