Help me in solving HTML09 problem

My issue

Did you add the 2 separate paragraphs as per Task-1?

My code

// your code goes here

Learning course: Learn HTML / CSS
Problem Link: HTML Paragraphs Practice Problem in HTML / CSS - CodeChef

@serious_bleck
U have to do it simply like this

<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>
<p> Oh! Got it! </p>
    
    <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>


    
</body>