<html>
<head><title>Jumping in and out of PHP</title></head>

<body>

<p>This is standard HTML</p>

<?php echo("<p>This is produced using PHP</p>"); ?>

<p>We are now back to HTML</p>

<?php 
  
  echo("<p>and once again with PHP</p>"); 

?>

</body>
</html>