नीचे दिए गए कोड में किस प्रकार का CSS प्रयोग किया गया है?
Which type of CSS is used in the code below ?
<p style = "border:2px solid red;">
A)
B)
C)
D)
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.