one less request
Why inline an SVG as a data URI
A data URI puts the image inside the HTML or CSS itself, so the browser never makes a second request for it. For small icons that is the difference between appearing instantly and appearing a moment late.
The trade-off is caching: an inlined icon is re-downloaded with every page that contains it, and it cannot be cached on its own. Inline the handful of icons that matter for the first paint, and leave the rest as files.
three steps
How to encode an SVG as Base64
Drop the SVG
Pick a .svg file — it stays on your device.
Pick a form
Copy the Base64 or the URL-encoded data URI.
Paste it in
Use the ready-made img tag or CSS background rule.