Note: All the hypertext procedures (HTP) shown in this section are also available as hypertext functions (HTF).
| 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> |
| 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> |
| 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> |