Usage Note 23370: In ODS HTML output, how can I supply a different font for each title and for each footnote?
This has to be done on the TITLE or FOOTNOTE statement. The HTML can be added to the title and footnote directly if using the HTML device, or universally if using the COLOR= and the HEIGHT= attributes.
The following code works in SAS 8.1 and later:
title1 color=red height=7 "this is a title";
title2 color=blue height=4 "this is the second title";
The following code adds HTML tags. This can still be done, but it was the only method prior to SAS 8.1:
footnote1 "<font color=blue size='4'>test 1</font>" ;
footnote2 "<font color=blue size='4'>test 2</font>" ;
See FAQ 3088 for more information about titles and footnotes.
See also the full PROC TEMPLATE FAQ and Concepts.
Operating System and Release Information
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
| Type: | Usage Note |
| Priority: | low |
| Topic: | SAS Reference ==> ODS (Output Delivery System) Third Party ==> Output ==> HTML
|
| Date Modified: | 2007-08-28 14:27:49 |
| Date Created: | 2003-08-11 09:26:00 |