<style>
element as an internal css method, and starts with /*
and ends with */
Example :
<style>
/* This is a single-line comment */
p {
color: red;
}
</style>
We can add comments wherever we want in the code:
Example :
p {
background-color: red; /* Set Background color to red */
}
Example :
/* This is
a multi-line
comment */
p {
color: red;
}