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