Which character is used to indicate an end tag in HTML?
*
/
<
>
Correct: B
The forward slash (/) is used to indicate the closing tag in HTML. For example, <p> is used to mark the opening tag for a paragraph, while </p> is used to mark the closing tag for the paragraph.