Learn HTML by Building a Cat Photo App - Step 2

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1><catpictures>
</body>
</html>
  **Your browser information:**

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

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

Link to the challenge:

Hi

A html element consists of an opening tag, a closing tag, and any text between them.

You already have a h1 element in your code:
<h1>CatPhotoApp</h1>

This challenge asks you to create a new h2 element, and add it below your h1 element .

So, you need to

  • add a new line below your h1 element code
  • write an opening h2 tag and a closing h2 tag
  • and put the supplied text CatPhotoApp between the opening and closing h2 tags.

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