include html in another html file code example
Example 1: 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>
Example 2: how to create a html file
Make a folder
Create a file with .html at the end of it and open it with a text editor