0
What is comment tag and why we use it ???
I also search on internet but didn't get it.
5 Answers
+ 2
This should give you an overview of the reasons why code should be commented:
https://en.wikipedia.org/wiki/Comment_(computer_programming)
+ 1
Do you mean comment tag "<!-- Some text -->" in HTML?
+ 1
The comment tag(<!-- ............-->)is used to explain what you did or to make a summary of your code
e.g.:
<!DOCTYPE HTML>
<html>
<head>
</head>
<body>
<p> some text<!-- used this to output "some text" --></p>
</body>
</html>
0
yup
0
I am just a beginner