Question

Which of these is an example of internal 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;}

Answers

There are no human answers yet.
Answered by GPT-4o mini
The example of internal style is:

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

This is an internal CSS style that is typically placed within the `<head>` section of an HTML document to apply styles to elements on the page.