Create the table element Table_Header_1. The DEFINE statement and its substatement and attribute define Table_Header_1. The TEXT statement specifies the text of the header. The STYLE= attribute alters the style element that displays the table header. The style element Header is defined in the default style, Styles.Default. (For information on viewing a style, see Styles That Are Shipped with SAS Software.) In this case, the STYLE= attribute specifies a large font size. All other attributes that are included in Header remain in effect. This attribute affects only the HTML output.


The END statement ends the header template.


   define table_header_1;
      text "Top Three Fund Raisers";
      style=header{fontsize=6};
   end;