<head>
<style>
.special {
color: green;
}
</style>
</head>
You can integrate internal CSS stylesheets by placing the <style> element in the <head> section of a page. Internal styles apply to whole pages but not to multiple HTML documents. Several pages can be styled by repeating the same block of internal styles in them.
<p style="color: purple">This Is Paragraph</p>
It's a tag
The <style> tag is used to define an internal
style sheet in an HTML file.
<head>
<style>
.special {
color: green;
}
</style>
</head>
You can integrate internal CSS stylesheets by placing the <style> element in the <head> section of a page. Internal styles apply to whole pages but not to multiple HTML documents. Several pages can be styled by repeating the same block of internal styles in them.
<p style="color: purple">This Is Paragraph</p>
It's a tag
The <style> tag is used to define an internal
style sheet in an HTML file.