Learn HTML by Building a Cat Photo App - Step 3

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

I don’t understand the concept and what I am doing
Your code so far

<html>
<body>
  <h1>CatPhotoApp</h1>
  <h2>Cat Photos</h2>
  <P>Click here to view more cat photos</P>
</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.0.0 Safari/537.36

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

Link to the challenge:

Your are actually creating two headings and one paragraph.
Similar to our English language here in HTML we have headings and paragraph’s

<h1>CatPhotoApp</h1>

The above code is clearly saying that you are creating a Heading using <h1> tag, with its default property as bold and Increased font-size .

Similarly, creating another Heading using <h1> tag, here this tag is bit decreased in its font-size comparative to <h1> tag.
<p> tag in HTML .
Here this tag is not bold and less in its font-size comparative to heading tag’s by default .

Hope you got it :slightly_smiling_face:
Happy Learning

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