<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>First PHP Script</title>
<link href="my.css" rel="stylesheet" type="text/css" />

</head>
<body>
<?php
include ('header2.php');
?>

<div id="wrapper"> <!--wrapper-->

<div id="leftNav">
<?php
include ('left_nav.php');
?>
<!--end leftNav--></div>

<div id="content">
This is HTML

<br />
<?php
//phpinfo();
print "this text was made with PHP";

?>
<br />
<!--end content--></div>

<!--end wrapper--></div>

<div id="footy">
<?php
include ('footer2.php');
?>
<!--end footy--></div>

</body>
</html>