Step 6 need help

Tell us what’s happening:
Describe your issue in detail here.

  **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 cat photos.</p>
  </main>
</body>
</html>
  **Your browser information:**

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

Challenge: Step 6

Link to the challenge:

give all of these tags two spaces from left

I dont get what you mean

please explain further on step 6

it should be like that above

should i repeat the same code below it??

no you should replace it with the code from main opening tag to closing tag with that

this is the opening tag

Cat Photos

Click here to view more cat photos.

i should replace this tag ?

Cat Photos

???

to make the code easy to read we make give the children of an element some space, for example the p is the child of the div, so we add the space before the tag. but if the p is a sibling if the div we keep it at the same line.

in this example the p is a child of the div so we add space before the p
<div>
  <p></p>
</div>

in this example the p is a sibling of the div so we keep them in the same line
<div></div>
<p></p>

having issue with the image tag

having issue with step 12

Step 12 Turning “cat photos” into a link

only the cat photos?
or any other changes?

yes only the cat photos, make sure you do not change anything else for this test to pass

having issue with step 14

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