Create stylized HTML output. The first STYLE option specifies that the font of the headers be changed to italic. The second STYLE option specifies that the background of cells that contain input data be changed to blue and the foreground of these cells be changed to white.


proc print data=tempemp (obs=10) split='*' style(HEADER) = 
                                  {fontstyle=italic}                                 
                                  style(DATA) = 
                                  {backgrouncolor=blue foreground = white};