use html file in another html file code example
Example: include another html file in a html file
<html>
<head>
<script src="jquery.js"></script>
<script>
$(function(){
$("#includeContent").load("fileName.html");
});
</script>
</head>
<body>
<div id="includeContent"></div>
</body>
</html>