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</CatPhotoApp>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36

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

Link to the challenge:

In HTML, all opening tags must have equivalent and closing tags.

For eg. The following is all valid html:

<h1></h1>
<h2></h2>

However it is not valid to say

<h1></h2>

Also make sure that whenever you are asked for an html element you use the syntax of opening and closing tags (just like the h1 and h2 example)

But if you are asked to nest something inside or to add text to an element, they mean to put the text between the tags (not inside them)

Hope this helps a bit

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