In CSS, what character is used to denote an attribute selector?
A). A. Period (.)
B). B. Colon (:)
C). C. Hash (#)
D). D. Square brackets ([])
														What type of CSS selector should be used to target all <input> elements on a webpage?													
A). A. ID selectors
B). B. Class selectors
C). C. Element selectors
D). D. Attribute selectors
What is the primary purpose of using class selectors in CSS?
A). A. To target elements based on their tag names.
B). B. To apply styles to elements with specific attribute values.
C). C. To target elements based on their id attribute values.
D). D. To apply styles to elements with specific class names.
In CSS, what symbol is used to denote an ID selector?
A). A. Period (.)
B). B. Hash (#)
C). C. Colon (:)
D). D. Exclamation mark (!)
How do ID selectors differ from class selectors in CSS?
A). A. ID selectors target elements based on their tag names.
B). B. ID selectors target elements based on specific attribute values.
C). C. ID selectors allow for grouping and styling of multiple elements.
D). D. ID selectors apply styles to elements with specific id attribute values.
														What is the correct syntax for an attribute selector targeting <input>  elements with a type attribute set to 'checkbox'?													
A). A. input[type=checkbox]
B). B. input[type:checkbox]
C). C. input[type] checkbox
D). D. input[type=checkbox]
Which CSS selector is used to target HTML elements with specific attribute values?
A). A. Class selectors
B). B. ID selectors
C). C. Element selectors
D). D. Attribute selectors
How are class selectors applied to HTML elements?
A). A. By using a hash symbol (#) followed by the class name.
B). B. By using a period (.) followed by the class name.
C). C. By using a colon (:) followed by the class name.
D). D. By using an exclamation mark (!) followed by the class name.
What is the purpose of using an ID selector in CSS?
A). A. To target elements based on their tag names.
B). B. To apply styles to elements with specific class names.
C). C. To target elements based on their id attribute values.
D). D. To apply styles to elements with specific attribute values.
Which CSS selector targets HTML elements based on the presence or value of their attributes?
A). A. Class selectors
B). B. ID selectors
C). C. Element selectors
D). D. Attribute selectors