in css, how would you select all the <p> tags on a page? choose 1 answer: a p { } b #p { } c .p { } d <p> { }

in css, how would you select all the <p> tags on a page? choose 1 answer: a p { } b #p { } c .p { } d <p> { }
Answer
Brief Explanations:
In CSS, element selectors are used to select all elements of a certain type. The tag name p is used as an element selector to target all <p> tags. The # is used for ID selectors and the . is for class selectors. Angle - brackets are not used in CSS selectors.
Answer:
A. p { }