HForm

Tag Type C++ code (built in to libHForm)
Attributes None.
Contained Tags HeadRequired. Must come first.
BodyRequired. Must come second.
Related Tags None.
Comments
  NOTE: For best viewing, make your window at least as wide as this box.  

Here is a minumum skeleton for all HForm documents:
{HForm}
  {Head}
    {Window} Titlebar for window goes here {/Window}
  {/Head}
  {Body}

  ... Mixed HTML and RPM tags go here ...

  {/Body}
{/HForm}

Notice the similarity in the above to a skeleton HTML document:
  <HTML>
    <HEAD>
      <TITLE>Titlebar for window goes here</TITLE>
    </HEAD>
    <BODY>

       ... Other HTML tags go here ...

    </BODY>
  </HTML>