13.
How do you add HTML comment tags around a paragraph?
<!-- <p>This is a paragraph.</p>
<!-- <p>This is a paragraph. --> <!--</p>
<!-- <p>This is a paragraph. --> <!-- </p> -->
<!-- <p>This is a paragraph.</p> -->
Correct: C, D
The correct way to add HTML comment tags around a paragraph is by using the following syntax: <!-- <p>This is a paragraph.</p> --> or <!-- <p>This is a paragraph. --> <!-- </p> -->. Comment tags are used to add notes or comments in the HTML code that are not displayed in the browser.