0
How to include external HTML file into another HTML?
3 Answers
+ 1
That is very usefull and very common. But itâs always done in the server side.
<?php
include(âroot.phpâ);
?>
This is one of the reason why I like to use laravel and django. They have a proper templating engines.
0
Well say I have two separate HTML files. One is the root and the other is external HTML file on my computer and I want to merge/combine the two.