Convert files to Data URIs with base64 encoding
A Data URI embeds small files directly in HTML or CSS using the format: data:[MIME-type][;base64],data. This reduces HTTP requests, improving page load speed. Commonly used for icons, fonts, and small images. The encoded data is about 33% larger than the original binary file.