Answers for "commenti html"

1

how to add comment in html

<!-- Comment HTML -->
<style>
  /* A CSS comment */
</style>
<script>
  // A Javascript Comment
</script>
Posted by: Guest on August-08-2021
7

comment in HTML

<!-- This is how you comment in HTML -->
Posted by: Guest on December-15-2020
2

html comments

<!-- i am a comment -->
Posted by: Guest on September-22-2020
8

html comment

<!--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. -->
Posted by: Guest on June-21-2020
1

html comment

<!--this is comment-->
Posted by: Guest on October-08-2020
0

hmtl comment

<!--
this is a multi-line comment and is the only way to comment in html
However you can put them on the same line
-->
Posted by: Guest on September-04-2020

Browse Popular Code Answers by Language