how would you debug the tag in pink? <h1>fun family activities</h6> <h6> <h1> </h1> </p>

how would you debug the tag in pink? <h1>fun family activities</h6> <h6> <h1> </h1> </p>
Answer
Brief Explanations:
The opening tag is <h1> but the closing tag is </h6>, which is a mismatch. To debug, the closing tag should match the opening tag. So the correct closing tag for <h1> is </h1>.
Answer:
</h1>