Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">car_front</i>
SVG sprite
Use for static sites when you only need a few icons.
<svg class="mi" width="1em" height="1em" fill="currentColor">
<use xlink:href="/transportation-icons.svg#car-front" />
</svg>
SVG code
Use when you don't want any dependency.
info_outlined
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" class="mi-solid mi-car-front" viewBox="0 0 24 24">
<path d="M18.92 5.01A1.49 1.49 0 0 0 17.5 4h-11a1.5 1.5 0 0 0-1.42 1.01L3 11v8a1.003 1.003 0 0 0 1 1h1a1.003 1.003 0 0 0 1-1v-1h12v1a1.003 1.003 0 0 0 1 1h1a1.003 1.003 0 0 0 1-1v-8ZM6.5 15A1.5 1.5 0 1 1 8 13.5 1.5 1.5 0 0 1 6.5 15m11 0a1.5 1.5 0 1 1 1.5-1.5 1.5 1.5 0 0 1-1.5 1.5M5 10l1.5-4.5h11L19 10Z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.