<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Hello World</title>
<!--
<script type="text/javascript" src="myjavascript.js"></script>
<link href="mystyle.css" rel="stylesheet" type="text/css">
-->
<style type="text/css"><!--
   /* internal styles */
--></style>
</head>
<body>
 
<h1>Hello World</h1>

<?php
   
// Hello World in PHP
   // Author: Burt Rosenberg
   // Date: May 2007
   
echo "Hello world!\n" ;
?>

</body>
</html>