In html there is a way to comment out text you don’t want to be shown. This is very useful because it allows you to leave a comment for yourself or other professionals who might be working on a project with you to know what certain code does.
Here is how you make a comment:
<!– Write your comments here –>
by adding the <!– to the front and the –> to the end, what ever text you place in between them will be commented out in your code.