1<!-- This is a comment in html -->
2
3<!--
4This is a
5multiline
6comment in
7HTML!
8-->
1<!--This is a comment in html.-->
2<!--You can put comments enywhere! It does not care if it is mid peice of
3code in a peice of code! You must put the ending arrows in or it will
4think everything is a comment! Note you can comment over multiple lines.
5Use a ! at the start arrow, this may not make sence as the rest of
6html uses tags where ! is at the ends.-->
1<!-- HTML comment
2 any line -->
3
4/* CSS comment
5 any line */
6
7// Javascript comment single line
8/* Javascript comment
9 multiline */
1<!--HTML Comment Example! HTML Comments do not affect your code in
2any way, comments can be used to take notes to yourself, or if you
3are working with a team, this could be a good way to communicate
4without messing up any of your code. Comments will not be shown
5in your HTML webpage. -->