I’m learning to use PHP, CSS and XHTML. I would like to do a multiple site which have common style? How can I do some general background and how to import it to all my sites? I would like to have the following code in every page:
<div id="document">
<div class="nav">
<ul>
<li><a href="site/register">Register</a></li>
<li><a href="site/login">Log in</a></li>
</ul>
</div>
</div>
</ul>
Try using include: http://php.net/manual/en/function.include.php
or across the web like this:
For CSS stylesheets you can use: