24.
What is the purpose of the forward slash (/) in HTML?
It is used to define the document type.
It is used to enclose attribute values.
It is used to create line breaks.
It indicates an end tag.
Correct: D
The forward slash (/) is used in HTML to indicate the closing tag of an element. It is placed before the tag name to signify the end of that element. For example, <p> is the opening tag for a paragraph, while </p> is the closing tag.