It is very easy to include certain notes and comments in programming code of web sites, web pages, and applications. But, not always clear what is the best way to do this in a way that does not leave the actual page askew. We have found the following work well for our needs and thought we would share this with you. Of course, the method used is completely dependent on the type of programming in use at the time. Here are a few common programming solutions for including of comments and notes:
Html Comments:
Java Comments:
// Put your comment here //
/* Put your comment here*/
C comments:
// Put your comment here
/* Put your comment here*/