I have the following HTML template and I want to put it into a PHP file, the question I have is do I just wrap the template with <?php ?> or do I need to change around the JavaScript includes and the CSS style tag?
Here's the template
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta name="keywords" content=" some keywords for the bots">
<meta name="author" content="my name here">
<meta name="description" content="all about stuff here">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>site name</title>
<link rel="shortcut icon" href="favicon.ico">
<link href="style.css" rel="stylesheet" type="text/css" media="screen">
</head>
<body onload="javascript_function()">
<script language="JavaScript" src="js_include.js"></script>
</body>
</html>
<?php ?>within the<html></html>tags where ever necessary