Internal CSS Example

Example showing CSS defined inside a style tag.

Preview

Code

<style>
p {
  color: blue;
  font-size: 18px;
}
</style>

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

More HTML CSS Examples (9)