Day 1: Basic CSS Syntax and Selectors
QUESTION 1:
File: inline.css

Description:
Create a webpage with:

Inline styles to change the text color to red.
Add a background color to a paragraph.

QUESTION 2:
File: internal.css

Description:
Create a webpage with:

Internal CSS to style a heading.
Set the font size and color for a paragraph.

QUESTION 3:
File: external.css

Description:
Create an external CSS file to style:

Headings with different font sizes.
Links with a hover effect.

QUESTION 4:
File: universal.css

Description:
Use the universal selector (*) to:

Add padding and margins of 0 to all elements.
Set a common font-family for the entire webpage.

QUESTION 5:
File: grouping.css

Description:
Style multiple elements together:

Use a single rule for <h1> and <h2> to set a common color.

QUESTION 6:
File: descendant.css

Description:
Style a paragraph inside a <div> tag using a descendant selector.

QUESTION 7:
File: class.css

Description:
Use class selectors to style multiple elements with the same class name.

QUESTION 8:
File: id.css

Description:
Use an ID selector to style a unique element.