This lesson will help you understand the concept of CSS, its different types and how one can use comment in CSS
CSS stands for Cascading Style Sheets.
Describes how the web page should be displayed (look).
Describes how elements should be rendered on screen, on paper, in speech, or on other media.
Simply saying, CSS adds styling to the web page.
Inline CSS: Used to apply a unique style for a single element.
Internal CSS: Include CSS rules for a single HTML page and affect that page. It is defined in the <head> section using <style> element.
External CSS: The CSS rules are defined in a separate file with the extension(.css). And, each HTML page must include a reference to the external style sheet file (.css) using the <link> element, inside the <head> section.
A comment explains the code that might be helpful for self or others. And, they are not displayed in the browser.