Previous Page | Next Page

TEMPLATE Procedure: Creating Markup Language Tagsets

Example 7: Modifying an Event to Include Other Stylesheets


PROC TEMPLATE features:

DEFINE EVENT statement:

PUTQ statement



Program Description

The following program provides some example code that you can use to link a previously created stylesheet to an event that you define.


Program

 Note about code
define event stylesheet_link;
putq '<link rel= 'STYLESHEET' type='text/css' 
href=' URL '>' nl / if exists(url);
putq '<link rel= 'STYLESHEET' type='text/css'
href='http://your/stylesheet/url/goes/here'>' nl;
putq '<link rel= 'STYLESHEET' type='text/css'
href='http://your/stylesheet/url/goes/here'>' nl;
end;

Previous Page | Next Page | Top of Page