Home

Inline, Embedded CSS

Inline Styling

<p style="color:white; background-color:pink;">
  This is an example of inline styling.
</p>

This is an example of inline styling.

Embedded/Internal CSS

<head>
 <style>
 p
 {
   color:white;
  background-color:gray;
 }
 </style>
</head>