I am having a (lot) too large html file with more than 1500 lines. I'd like to split it into serveral file and merge them. It would be more maintainable et readable.
For example.
Page1:
<h1> Title 1 <h2>
<div> my div </div>
Page2:
<h1> Title 2 <h2>
<div> my div </div>
Then merge and display:
Page.html
<h1> Title 1 <h2>
<div> my div </div>
<h1> Title 2 <h2>
<div> my div </div>
That way, I can change one module and find it easily.
Is there a pure html or JS library? In .Net, it would be partial view. I am working with Bootstrap, tabs and modal. So Iframe is not the solution. Thanks,
Stéphane.