The title component

Defines HTML headings. The level 1 is used for the maximal size and the level 6 is used for the minimal size.

Introduced in SQLPage v0.19.0.

Top-level parameters

name required type description
contents REQUIRED

TEXT

A text to display.
center

BOOLEAN

Whether to center the title.
class

TEXT

class attribute added to the container in HTML. It can be used to apply custom styling to this item through css. Added in v0.18.0.
id

TEXT

id attribute added to the container in HTML. It can be used to target this item through css or for scrolling to this item through links (use "#id" in link url).
level

INTEGER

Set the heading level (default level is 1)
No data

Example 1

Displays several titles with different levels.

select 
    'title'   as component,
    'Level 1' as contents;
select 
    'title'   as component,
    'Level 2' as contents,
    2         as level;
select 
    'title'   as component,
    'Level 3' as contents,
    3         as level;

Result

Level 1

Level 2

Level 3

Example 2

Displays a centered title.

select 
    'title'   as component,
    'Level 1' as contents,
    TRUE      as center;

Result

Level 1

See also: other components