Including external HTML file to another HTML file [duplicate]

Another way is to use the object tag. This works on Chrome, IE, Firefox, Safari and Opera.

<object data="html/stuff_to_include.html"> 
    Your browser doesn’t support the object tag. 
</object>

more info at
http://www.w3schools.com/tags/tag_object.asp

Leave a Comment