Use the tagset TAGSETS.CHTML, which SAS provides. Compare the output from TAGSETS.MYTAGS to that from TAGSETS.CHTML, which SAS supplies. Use the following ODS code to specify the SAS tagset. You can specify any tagset by using TYPE= in an ODS MARKUP statement.


ods markup type=tagsets.chtml body='default-tagset-filename.html';

   proc print data=sashelp.class;
   run;

   ods markup close;