You build a page with 2 functions:
htm_Page_() - prepares the start of a page, by
creating the HEAD content and starting the BODY section.
and:
htm_Page_end() - finalize the page, by loading scripts
and ending the BODY
In between, you add your content.
See the source in php2html.lib.php to manage the function parameters.
PHP Source-code:
TOGGLE-height: Click icon to toggle viewHeight for this card
WIDE: Click to maximize/normalize this card width
COLLAPSE: Click to close all cards;"
EXPAND: Click to open all cards;"
// PHP7-syntax:
htm_Page_($pageTitl='pages.page.php',
$ØPageImage=$gbl_ProgRoot.'_assets/images/_background.png',
$align='center');
// htm_Page_() must be followed by htm_Page_end() !
echo 'You place your page-content here...<br>';
htm_Page_end();