Create the HTML output and specify the specify the style to use for the output. The ODS HTML statement opens the HTML destination and creates HTML output. The output from PROC PRINT is sent to the body file. FRAME= and CONTENTS= create a frame that includes a table of contents that links to the contents of the body file. The body file also appears in the frame.


The STYLE= option tells ODS to use CustomDefault as the style when it formats the output.


ods html body="customdefaultstyle-body.htm"
         contents="customdefaultstyle-content.htm"
         frame="customdefaultstyle-frame.htm"
         style=customdefault;