Learn HTML by Building a Cat Photo App - Step 6

Tell us what’s happening:
Describe your issue in detail here. Good evening everyone i`m kinda confuse in my step 6 of HTML assignment can any help me please

  **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.0.0 Safari/537.36

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

Link to the challenge:

Indent means to space, align your p element with your h2, both should be 2 spaces in

im sorry but i hink im kinda really confused here

currently your h2 and p elements are inline with your main element, just shift them 2 spaces in.

You used the return key. You need to use the space bar instead.

yeah i did use the space bar but its still aint going

What is your updated code?

<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>

sorry i dont quite understand you

Can you post your latest version of the code?

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

i dont know if you can see it

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

im really im very new to coding and i kind of find it difficult to understand the terms you use forgive me for bothering you so much

You are close here - your comment element (the one that starts with <!--) should be lined up with your h2 and p elements.


Its no bother! We are here to help.

1 Like

im really grateful i just figured it now thank you sm

1 Like

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