htp.bgsound htp.big htp.blockquoteOpen, htp.blockquoteClose htp.bodyOpen, htp.bodyClose htp.bold

1-8 Oracle Fusion Middleware PLSQL Web Toolkit Reference

1.8 htp.bgsound

This generates the BGSOUND HTML tag, which includes audio for a Web page. Table 1–7 describes the properties of htp.bgsound.

1.9 htp.big

This generates the BIG and BIG tags, which direct the browser to render the text in a bigger font. Table 1–8 describes the properties of htp.big.

1.10 htp.blockquoteOpen, htp.blockquoteClose

This generates the BLOCKQUOTE and BLOCKQUOTE tag, which mark a section of quoted text. Table 1–9 describes the properties of htp.blockquoteOpen, htp.blockquoteClose. Table 1–6 htp.basefont Properties Definitions Syntax: htp.basefontnsize in integer; htf.basefontnsize return varchar2; Parameters: nsize - the value for the SIZE attribute. Generates: BASEFONT SIZE=nsize Table 1–7 htp.bgsound Properties Definitions Syntax: htp.bgsound csrc in varchar2 cloop in varchar2 DEFAULT NULL cattributes in varchar2 DEFAULT NULL; htf.bgsoundcsrc, cloop, cattributes return varchar2; Parameters: csrc - the value for the SRC attribute. cloop - the value for the LOOP attribute. cattributes - other attributes to be included as-is in the tag. Generates: BGSOUND SRC=csrc LOOP=cloop cattributes Table 1–8 htp.big Properties Definitions Syntax: htp.big ctext in varchar2 cattributes in varchar2 DEFAULT NULL; htf.bigctext, cattributes return varchar2; Parameters: ctext - the text that goes between the tags. cattributes - other attributes to be included as-is in the tag. Generates: BIG cattributesctextBIG The htp and htf Packages 1-9

1.11 htp.bodyOpen, htp.bodyClose

This generates the BODY and BODY tags, which mark the body section of an HTML document. Table 1–10 describes the properties of htp.bodyOpen, htp.bodyClose.

1.12 htp.bold

This generates the B and B tags, which direct the browser to display the text in boldface. Table 1–11 describes the properties of htp.bold. Table 1–9 htp.blockquoteOpen, htp.blockquoteClose Properties Definitions Syntax: htp.blockquoteOpen cnowrap in varchar2 DEFAULT NULL cclear in varchar2 DEFAULT NULL cattributes in varchar2 DEFAULT NULL; htf.blockquoteOpen cnowrap, cclear, cattributes return varchar2; htp.blockquoteClose; htf.blockquoteClose return varchar2; Parameters: cnowrap - if the value for this parameter is not NULL, the NOWRAP attribute is added to the tag. cclear - the value for the CLEAR attribute. cattributes - other attributes to be included as-is in the tag. Generates: BLOCKQUOTE CLEAR=cclear NOWRAP cattributes BLOCKQUOTE Table 1–10 htp.bodyOpen, htp.bodyClose Properties Definitions Syntax: htp.bodyOpen cbackground in varchar2 DEFAULT NULL cattributes in varchar2 DEFAULT NULL; htf.bodyOpencbackground, cattributes return varchar2; htp.bodyClose; htf.bodyClose return varchar2; Parameters: cbackground - the value for the BACKGROUND attribute, which specifies a graphic file to use for the background of the document. cattributes - other attributes to be included as-is in the tag. Generates: BODY background=cbackground cattributes BODY Example: htp.bodyOpenimgbackground.gif; generates: BODY background=imgbackground.gif 1-10 Oracle Fusion Middleware PLSQL Web Toolkit Reference

1.13 htp.center