For example, jQuery Mobile uses Make to assemble its js and css files into a single js and css file.
The idea is to separate the parts of the file that will eventually be embedded in smaller files that are responsible for their own thing.
You can do the same with a webpage. Add the images as Base64 strings, and you can have the entire site as one .htm file, but all the files that make up this embedded file exist independently of each other, as usual. The image below may bring the concept home a little better.

I made my own program for this, which you can read about here if you want. My question is, did someone else catch this idea or if there is a more standard way to do this?
source share