21.
How can you add a line break within the two sentences?
<p>HTML is the most basic building block of the Web. It defines the meaning and structure of web content</p>
</br> tag before "It"
<break > tag before </p>
<br> tag after <p> tag
<br> tag before "It"
Correct: D
To add a line break within the paragraph, you can use the <br> tag.
<p>HTML is the most basic building block of the Web. <br> It defines the meaning and structure of web content</p>