Which of these is an example of inline style?

(1 point)
Responses

<p style=”color: silver”> Welcome!</p>

Welcome!

<style> p {color: silver;} </style>

p {color: silver;}

p (style: silver;)

p (style: silver;)

p {color: silver;}

1 answer

The example of inline style from your list is:

<p style="color: silver"> Welcome!</p>

Inline styles are defined directly within the HTML tag using the style attribute.