0
What is the complete list of "comments" type code for website code?
2 Answers
+ 2
HTML comment:
<!-- Your comment here. Can be multiple lines. -->
CSS comment:
/* Your comment here. Can be multiple lines. */
Javascript comment:
// Your comment here. Single line only.
/* Your comment here. Can be multiple lines */
PHP comment:
// Your comment here. Single line only.
# Your comment here. Single line only.
/* Your comment here. Can be multiple lines. */
SQL Comments:
-- Your comment here. Single line only.
/* Your comment here. Can be multiple lines */
+ 2
you mean the comments which user inputs ?