1. What does CSS stand for?
CSS stands for Cascading Style Sheet.
2. Why was CSS created?
CSS is a language that describes the style of an HTML document and helps make the website have a better style and create uniqueness to it.
3. How many different methods are there for inserting styles and what are they?
There are three different inserting styles. They are External CSS, Internal CSS, and Inline CSS.
4. Explain in detail inline styles. What are they? Why and when are they used? Are they the preferred method for inserting styles into web pages? Why or why not?
An inline style used to apply a unique style for a single element.
To use inline styles, add the style attribute to the relevant element. The style attribute can contain any CSS property. They are not prefered because it loses many of the advantages of a style sheet.