<!--This is a comment in html.-->
<!--You can put comments enywhere! It does not care if it is mid peice of
code in a peice of code! You must put the ending arrows in or it will
think everything is a comment! Note you can comment over multiple lines.
Use a ! at the start arrow, this may not make sence as the rest of
html uses tags where ! is at the ends.-->
<!-- This is how you do an HTML comment tag -->
/* This is how you do a comment in the css STYLE section */
// this is how you do a comment in javascript and php
# This is a comment in Python
<!-- short comment -->
<!-- loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong comment -->
<!--
multiple
line
comment
-->
<!-- Comments won't be shown on the page or effect the code but will remain in website code. Useful for commenting what is the code for -->
<!-- This is the first comment, it won't be shown on a page -->
<h1>And this is a header. It will be fully visible.</h1>
<!--
Multiline comment.
You can place a lot of information there.
Maybe even a whole book.
-->
<div>
<p>This text is visible. Check the source code for multi-line comment.</p>
<!--
Hello, world! I am a comment and I am
displayed in multiple lines!
-->
</div>
<!--HTML Comment Example! HTML Comments do not affect your code in
any way, comments can be used to take notes to yourself, or if you
are working with a team, this could be a good way to communicate
without messing up any of your code. Comments will not be shown
in your HTML webpage. -->
If you want to make a comment in html, you do this
<!-- This is a comment --> This is outside the comment
This is useful if you want to make notes in your code:
<a href="https://www.google.com">Google</a> <!-- This link sends the user to Google -->