In Sass we can combine multiple partials into single css output like
@import "scss/header";
@import "scss/footer";
@import "scss/navigation";
@import "scss/sidebar";
into
final.scss >
final.css
Is there any method to do same with raw .HTML
files (not .php or .asp) like
@import "header.html";
@import "scss/footer.html";
@import "scss/navigation.html";
@import "scss/sidebar.html";
into index.html
The above is just an example to explain, what I'm asking
I know I can do this using php includes but i want to know if i can with just .html files. I just want to combines files at my PC not on server.