CSS comments are used to explain code and are ignored by the browser.
Comments help you and others understand the code easily.
They are not visible on the webpage.
/* This is a CSS comment */
body {
background-color: #f5f5f5; /* light background */
}
h1 {
color: blue; /* heading color */
}
/* Paragraph styling */
p {
font-size: 18px;
color: #333;
}