Oracle WebServer User's Guide

Contents Index Home Previous Next

Physical Format Tags

The physical format tags are used to specify the format of the marked text.

Note: All the hypertext procedures (HTP) shown in this section are also available as hypertext functions (HTF).

htp.bold

Syntax htp.bold (ctext, cattributes);
Purpose Prints a pair of HTML tags that specify the text they surround is to be rendered as boldface.
Parameters ctext in varchar2
cattributes in varchar2 DEFAULT NULL
Generates <B cattributes>ctext</B>

htp.italic

Syntax htp.italic (ctext, cattributes);
Purpose Prints a pair of HTML tags that specify the text they surround is to be rendered as italics.
Parameters ctext in varchar2
cattributes in varchar2 DEFAULT NULL
Generates <I cattributes>ctext</I>

htp.teletype

Syntax htp.teletype (ctext, cattributes);
Purpose Prints a pair of HTML tags that specify the text they surround is to be rendered in a fixed width typewriter font, e.g. Courier.
Parameters ctext in varchar2
cattributes in varchar2 DEFAULT NULL
Generates <TT cattributes>ctext</TT>

Contents Index Home Previous Next