Freecodecamp question

Hi I have a question concerning the steps I see that these steps assume you know what the instructions are all about. which I am clueless I would like to know which is better using the website are we suppose to watch their tutorials before attempting the questions.

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
    <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
    <a href="https://freecatphotoapp.com"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>
  </main>l;
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36

Challenge: Learn HTML by Building a Cat Photo App - Step 15

Link to the challenge:

It is made for total beginners. No other resource should be needed (for now at least). You can always ask for help on the forum for the specific challenge step.


Do you have a question about the step you are on and your code?

The section element works just like the main element and all you have to do is put everything inside the main element inside a new section element.

  <main>
    <section>
    <!-- rest of the HTML elements that was inside main -->
    </section>
  </main>

no Las I was just worried that I started a course that is new to me and now I’m doing the steps the wrong way but let me try work on step 15 then if I still struggle I will ask for help

Thank u for your response

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