Learn HTML by Building a Cat Photo App - Step 2

Tell us what’s happening:

i need help with the step 2 exercise, I don’t know no why the I get wrong answers continuously after tying many times

Your code so far

<html>
  <body>

<!-- User Editable Region -->

    </h1"CatPhotoApp">
    </h2"CatPhotos">

<!-- User Editable Region -->

  </body>
</html>

Your browser information:

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

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 2

Hey @randboat25,
unlike most programming languages, you do not need to put quotation marks to let the program know that its a string of text
put them inbetween an element and html will know what to format it

example code:

<p> text here </p>
<h1> text here </h1>
<h2> text here </h2>
<h3> text here </h3>
<h4> text here </h4>
<h5> text here </h5>
<h6> text here </h6>

Html will automatically preview it, also you need both an opening and closing tag for it to preview
closing tag can be seen with a slash before the element,
example of closing tag

</h1>

example of opening tag

<h1>

you need to put the text inbetween an opening and closing tag for it to preview, you do not need to surround it with quotations.

Happy Coding!

  • yula