Question 101
Which code is an example of inline CSS?
A.
<style>p { color: red; }</style>
B.
<link rel="stylesheet" href="red.css">
C.
p { color: red; }
D.
<p style="color: red;">Hello</p>
Correct Answer:
—
Inline CSS uses the style attribute inside the tag.
Bloom: Knowledge