Who can help me solve the problem, thank you all。

Tell us what’s happening:

Your code so far


<h2>CatPhotoApp</h2

<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
<header>
<p> Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
</header>

I do not know where wrong。
Who will help me。
My bad translation,So it is difficult to express correctly。

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.204 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/introduction-to-html5-elements

Have a look at your first <h2> tag, specifically the last character of it and you will see a character is missing.

As well as missing out that >, you haven’t done two things:

  • it doesn’t ask you to use a header tag anywhere in the instructions: it asks you use a main tag.
  • it asks you to put both of the p-wrapped lines of text in that main tag, not one outside of and one inside of it.
<h2>CatPhotoApp</h2>
<header>
<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
<p> Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
</header>

Try this.

Thank you:笑脸:。。。(Meet Number of characters)

2 Likes

Thank you for your kind help.

1 Like