Rasi
answered Nov 30 '-1 00:00
Data URIs can help you to Speed Up Your Website
to speedup the website . reduce the http request needed for the entire page load
suppose a page have 23 http request
some of them are for image , css and js
you can use data URIs instead of using directly css or js or image src path .
How Data URIs speed up the website
Data URIs reduce the http request .
Data URIs load direct data to html without making http request
How to use Data URIs
USAGE::
data:[<MIME-type>][;charset=<encoding>][;base64],<data>
<img src="data:image/jpeg;base64,/9j/4AAQS ....EAAkGBhQSERIUExQ " />
instead of
<img src="data.png" />
same for css or js you can use it .
and reduce the http request and speed up the website