नीचे दिए गए कोड में किस प्रकार का CSS प्रयोग किया गया है?
Which type of CSS is used in the code below ?
<p style = "border:2px solid red;">
A
External CSS
B
Internal CSS
C
Inline CSS
D
None of these
Explanation
In the given code:
The CSS is applied directly within the style attribute of the HTML element (). This is known as Inline CSS because the styles are written directly in the HTML tag.
So, the correct answer is:
(C) Inline CSS.
Correct Answer: C) Inline CSS