Adding Style sheets within the header of the HTML file

Not the clean way to do this, just for testing purpose

color : 16 standard names ('red'), rgb(255, 0, 0) or #ff0000

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
 <head>
   <title>My first styled page</title>
<style type="text/css">
  body {
    color: purple;
    background-color: #d8da3d 
  }
</style> 
 </head>
 <body>
   ../..

Source : http://www.w3.org/Style/Examples/011/firstcss

Example