There are tones of several ways to do what you whant.
Let's start from the Apache level:
In case your web site run under apache you can use a module called SSI. SSI Stands for Server Side Includes. This is the simple way if you like to create template like web sites with HTML. The method allows you to split you web page into several files and then the server will compose all these into one page. So you can have in example a header.html footer.html sitebar.html about_us.html and when you call the abou_us.html the server will load also the other three files into that one.
Using PHP require(_once) or include(_once):
PHP have four commands that allows the developer to load external php files into the current working file. So in example you can have the files header.php, footer.php about_us.php. and into about_us.php you can include the external files. Consider that as an example:
header.php
<html>
<head>
<title>My page title</title>
</head>
<body>
footer.php
</body>
</html>
about_us.php
<?php
require_once('header.php');
?>
Enter here HTML for your about us page
<?php
require_once('footer.php');
?>
Using a templating Engine:
You can use a templating engine like smarty. That engine requires PHP and is somehow dificult to use it. This is the most famous template engine for a long time now.
Using a programming language framework:
You can use a programming language framework, such us CakePHP that allows you to split your theme and create your own theme.
This list can be a realy long. For now I thing you are ready to go with the most famous methods for templates ;)