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.
(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 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.