+ 1
Can we add the comments any were in the html code !
5 Respuestas
+ 2
Yes! You can add comments any where in the HTML code.
<!-- This is under comment -->
edit:- you can't use inside tags and inside comment itself.
+ 2
Yes u can add anywhere
But not inside tags and inside a comment itself
for example:
<div <!-- hello --> ></div>
not valid
<!-- <!-- -->-->
not valid
+ 2
Yeah ,but make sure that comments do not nest which means a comment cannot be put inside another comment.
Second the double-dash sequence "--" may not appear inside a comment except as part of the closing --> tag.
You must also make sure that there are no spaces in the start-of comment string.
(for example < !--comment--> is not valid)
+ 2
Yes, <!-- HTML comment -->, in others lenguages of programming Is diferent
+ 1
Literally yes.