I don't know why it didn't work

i’m a beginner


any help please…
thanks

Look very closely at the closing tag examples. Yours are slightly off.

1 Like

your code

<h1>hello world<h1/>
<h2>catphotoApp<h2/>

right code

<h1>hello world</h1>
<h2>catphotoApp</h2>

The slash comes before the element closing tag
like this

</h1>
</h2>
1 Like

oh thanks a lot i get it <3

@faiz1, It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

You can post solutions that invite discussion (like asking how the solution works, or asking about certain parts of the solution). But please don’t just post your solution for the sake of sharing it.
If you post a full passing solution to a challenge and have questions about it, please surround it with [spoiler] and [/spoiler] tags on the line above and below your solution code.

1 Like

What is the spoiler tag used for, and what is the meaning of the spoiler tag.

It blurs out the contents, so that people don’t see solutions unless they choose to click on it.

This is an example.

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