<html>
<head>
<title>test page</title>
</head>
<body>
<?php
echo "<h1>hello there</h1>";
?>
</body>
</html>
or,
<?php
echo <<<EOT
<html>
<head>
<title>test page</title>
</head>
<body>
EOT;
echo "<h1>hello there</h1>";
echo "</body></html>";
?>