How do you add a comment into HTML?
-
<-Comment->
-
<--Comment-->
-
<!--Comment-->
-
<Comment/>
C
Correct answer
Explanation
The standard syntax for comments in HTML is . This prevents the enclosed text from being rendered by browsers. Distractors like <--Comment--> or <-Comment-> lack the correct exclamation mark and double-hyphen structure required by the HTML parser.