I am confused by the wording.

Tell us what’s happening:
Describe your issue in detail here.
I am not sure where I’m supposed to start and end, and the way the hint is worded is confusing

  **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 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15

Challenge: Step 6

Link to the challenge:

For this Step, You have to make sure the h2, the comment and p are exactly six spaces from the start of the line.

You have to indent the h2, comment and p to indicate that the main element is a parent element of the h2, comment and p elements.
They should be indented two more spaces than its parent element to improve readability.

I would recommend you to click Restart Step and add two spaces for the h2, comment and the p OR select the h2, comment and p and press the tab key once.

1 Like

Hey, I figured out how I was supposed to do it through someone else who had the same problem, now I’m a bit farther ahead but I’m noticing that on a lot of these things I have trouble with is because of the way they’re worded. Whenever it’s not that it’s because I’m new to this, and I have trouble remembering what different words mean. I think that it would be useful to have a way of reminding someone what different words mean especially for beginners.

No issue, let me explain you

<main>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<p>Click here to view more cat photos.</p>
</main>

Consider that your example you are your parent’s child right??? Similarly here in example main is parent of it’s children which are <h2>, <!-- Comment -->, and a <p>

Now we come to what you are asked :slight_smile:
You are asked to place two spaces before the children(<h2>,<!--Comment-->,<p>) of

I hope you now will be able to do it :stuck_out_tongue:

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