HTML Heading Procedures

Table 68. HTML Heading Procedures

Procedure

Description

html_h1

Start of heading level one text.

Syntax: html_h1(string attributes)

  • attributes = HTML attributes inside <H1>

Example::

do html_h1('')
print 'This is a heading' () 
do html_h1_end

html_h1_end

End of heading level one text.

Syntax: html_h1_end

html_h2

Start of heading level two text.

Syntax: html_h2(string attributes)

  • attributes = HTML attributes inside <H2>

Example:

do html_h2('')
print 'This is a heading' ()
do html_h2_end

html_h2_end

End of heading level two text.

Syntax: html_h2_end

html_h3

Start of heading level three text. (This heading is the default.)

Syntax: html_h3(string attributes)

  • attributes = HTML attributes inside <H3>

html_h3_end

End of heading level three text.

Syntax: html_h3_end

html_h4

Start of heading level four text.

Syntax: html_h4(string attributes)

  • attributes = HTML attributes inside <H4>

html_h4_end

End of heading level four text.

Syntax: html_h4_end

html_h5

Start of heading level five text.

Syntax: html_h5(string attributes)

  • attributes = HTML attributes inside <H5>

html_h5_end

End of heading level five text.

Syntax: html_h5_end

html_h6

Start of heading level six text.

Syntax: html_h6(string attributes)

  • attributes = HTML attributes inside <H6>

html_h6_end

End of heading level six text.

Syntax: html_h6_end