Build Your Own SVG Icons

CSS sprites is when you combine multiple images into one file, and then, by doing that, you only have that one HTTP request for that image file (instead of 50 or however many images yo ucombined)

Then to reference a particular image in that combined image file, you mess with background-position to only show the part you want.