To comment out multiple lines of HTML code, wrap the lines with <!– and –>.
For example:
html
Copy code
<!–
<p>This is a commented-out paragraph.</p>
<div>This entire block will be ignored by the browser.</div>
–>
Everything between <!– and –> will be treated as a comment and ignored by the browser.