Inline Style Sheets
Applied directly within an HTML element using the style attribute.
<p style="color: blue; font-size: 20px;">Hello, CSS!</p>
✔ Quick changes
❌ Not recommended for large projects
Qus. 1 : Which of the following HTML attribute is used to define inline styles?
- Style
- type
- class
- None of the above
- to make that specific paragraph text color as blue
- Error
- nothing happen
- None of the above
- The external CSS rule is applied
- The inline style is applied
- Both are ignored
- The browser applies the styles randomly