0
What is use of <!--.....--> in html?? Plzzz give me an example based on it
<!-->
4 Respostas
+ 20
The comment tag is used to insert comments in the source code. Comments are not displayed in the browsers.
You can use comments to explain your code, which can help you when you edit the source code at a later date. This is especially useful if you have a lot of code.
Explanation and example:
https://www.w3schools.com/TAGS/tag_comment.asp
+ 2
It is comment, it is explained on the last page of this lesson: https://www.sololearn.com/learn/HTML/1027/
+ 2
the comment tag in html
if you use this is html file like <!--i love sololearn-->
this part is not show in web page this is comment for who read your code
0
thanks guys