SUBROUTINE HEADING
INCLUDE #RW.INCLUDE.DEFS FROM /SYSFILES/REALWEB,BP
CALL RW_START_HTML_PAGE("Heading Example", "", "", "", "")
HTML = ""
TEXT = "Overview"
CALL RWS_HEADING(TEXT, 1, 'style="color: purple"')
HTML = HTML : TEXT
TEXT = "Reality is a software environment that supports Reality " : ...
"applications on UNIX and Windows (NT, 2000 and XP) systems. The " : ...
"applications support environment supplied by Reality is a Relational " : ...
"Database Management System (RDBMS), supporting multiple databases on " : ...
"a single host platform, a range of powerful utilities for database " : ...
"management and inquiry, and a set of utilities for operating system " : ...
"resources."
CALL RWS_PARA(TEXT, "", "")
HTML = HTML : TEXT
TEXT = "Multiple Databases"
CALL RWS_HEADING(TEXT, 2, "")
HTML = HTML : TEXT
TEXT = "Any number of databases can be created and maintained on the host. " : ...
"The only restriction is disk space availability. This allows " : ...
"independent and secure use of different databases by different " : ...
"departments or groups using the system. Each database comprises a " : ...
"collection of data organised in relational data structures enabling " : ...
"easy access to, and manipulation of data."
CALL RWS_PARA(TEXT, "", "")
HTML = HTML : TEXT
CALL RW_PUT(HTML)
CALL RW_END_PAGE
RETURN
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<META NAME="Generator" CONTENT="Reality">
<TITLE>Heading Example</TITLE>
</HEAD>
<BODY>
<H1 style="color: purple">
Overview
</H1>
<P>
Reality is a software environment that supports Reality applications on
UNIX and Windows (NT, 2000 and XP) systems. The applications support
environment supplied by Reality is a Relational Database Management System
(RDBMS), supporting multiple databases on a single host platform, a range
of powerful utilities for database management and inquiry, and a set of
utilities for operating system resources.
</P>
<H2>
Multiple Databases
</H2>
<P>
Any number of databases can be created and maintained on the host. The only
restriction is disk space availability. This allows independent and secure
use of different databases by different departments or groups using the system.
Each database comprises a collection of data organised in relational data
structures enabling easy access to, and manipulation of data.
</P>
</BODY>
</HTML>
NEC welcomes your feedback on our documentation.
If you have any comments about the current Reality Help, or want something to be added in a future revision, please contact your NEC Helpdesk.
If your comment relates to this particular Help topic, remember to include the following information:
Product:
|
RealityVersion 15.4
|
Help revision:
|
Revision 0
|
Help topic:
|
Heading Example (RealWeb)
|
File name:
|
HEADING.htm
|