Internal CSS Example

Internal CSS is written inside a style tag in the head section of an HTML document.

Preview

Code

<style>
p{
color:#2563eb;
font-size:18px;
}
</style>

<p>This paragraph is styled using internal CSS.</p>

More CSS How To Examples (5)