Hi, I ran into trouble trying to use the include function.
Here's the code, which I think should work,
index.html
<html>
<?php include('head.php'); ?>
<body>
<div id="header"></div>
</body>
</html>
head.php
<head>
<title>Name</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>