Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<html>
<head>
<title>{title}</title>
</head>
<body>
{menu}
{content}
</body>
<?PHP
$var = "Hello World!";
?>
<html>
<head><title>My test</title></head>
<body>
<? PHP print "<div align=\"center\"><font color=\"blue\">".$var."</font></div>";?>
</body>
</html>
<?PHP
$var = "Hello World!";
print<<<HTML
<html>
<head><title>My test</title></head>
<body>
<div align="center"><font color="blue">$var</font></div>
</body>
</html>
HTML;
?>