comments html5 code example
Example 1: commenting in html
<!-- a comment in html -->
Example 2: how do i comment in htmle
<div>
<p>This text is visible. Check the source code for multi-line comment.</p>
<!--
Hello, world! I am a comment and I am
displayed in multiple lines!
-->
</div>
Example 3: html comments
<!-- i am a comment -->
Example 4: comments html.erb
#You need mix html comments tag and ruby comments tag :
'#' and '<!-- -->'