Help me in solving HTML09 problem

My issue

I didn’t understand in this problem

My code

// your code goes here

Learning course: Learn HTML / CSS
Problem Link: HTML Paragraphs in HTML / CSS

<body>

    <!-- This is TASK 1 -->
    <h1><p> This is how it would look without the break tag </p>
<p> Oh! Got it! </p> </h1>

    <! --This is TASK 2 -->
    <h1><p> This is how it would look with the break tag.<br> Ah! Got it!</p></h1>

    
</body>
<h1> Task 1: 2 paragraphs</h1>
<!-- Type your code for task 1 below this line -->
<p> This is how it would look without the break tag </p>

Oh! Got it!

<h1> Task 2: 1 paragraph with 2 sentences with spacing</h1>
<!-- Type your code for task 2 below this line -->
<p> This is how it would look with the break tag.<br> Ah! Got it!</p>
<h1> Task 1: 2 paragraphs</h1>
<!-- Type your code for task 1 below this line -->
<p>This is the 1st sentence.</p>
<p>This is the 2nd sentence.</p>
<p>This is the 3rd sentence. </p>
<p>I am sure you got the point by now</p>
<h1> Task 2: 1 paragraph with 2 sentences with spacing</h1>
<!-- Type your code for task 2 below this line -->
<p>This is the 1st sentence.</p>  <br />
<p>This is the 2nd sentence.</p>  <br />
<p>This is the 3rd sentence. </p>  <br />
<p>I am sure you got the point by now</p>  <br />
1 Like