How do you insert a comment in a CSS file?
Example:-
/* This is a single-line CSS comment */
h2 { background-color: green; }
You can add comments as follows wherever you want in the code:
Example
h2 { background-color: yellow; /* Set text color to yellow */ }
Comments can also span multiple lines:?
Example
/* This is
a multi-line
comment */
h2 { color: brown; }
Which is the correct CSS syntax?
Which HTML attribute is used to define inline styles?
Which HTML tag is used to define an internal style sheet?
Where in an HTML document is the correct place to refer to an external style sheet?
What is the correct HTML for referring to an external style sheet?