Question

An empty tag has: A: an opening tag and a closing tag B: a bug C: no separate closing tag D:

Answers

GPT-4o mini
C: no separate closing tag

An empty tag is a type of HTML (or XML) element that does not have any content between an opening and closing tag. Instead, it is typically represented by a self-closing tag, meaning it combines the opening and closing in a single tag (e.g., `<br />`, `<img src="image.jpg" />`, or `<input type="text" />`).