HTML Comment Visibility

Paragraph one of the text. ya ya yada bold italic
<!-- this is in the HTML comment tag and should not disply -->
End of the paragraph.

Here is the code that I used in creating the above paragraph:

<p>
Paragraph one of the text. ya ya yada <b>bold</b> <i>italic</i>
<!-- this is in the HTML comment tag and should not disply -->
End of the paragraph.
</p>

Note the bold and italic tags are honored, but not the comment tag.