Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">geocode</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#geocode" />
</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-geocode" viewBox="0 0 24 24">
<path d="M12 2a10 10 0 1 0 10 10A10.03 10.03 0 0 0 12 2m0 18.3a8.2 8.2 0 0 1-2.8-.5 3.1 3.1 0 0 0 .8-1.3c.1-.3-.2-1-.2-1.1a9 9 0 0 0-1-1.3c-.2-.1 0-.9 0-1.4s-1.1-.8-1.5-1c-.4-.3-.6.8-1 .6-.5-.2-.4-.9-.5-1.5 0-.4-1.1-.5-1.7-.6a7.99 7.99 0 0 1 5.5-7.6l-.1.1c-.5.4-1 0-.8 1.2.1 1.1-.1 1.7.8 1.8a5.4 5.4 0 0 0 1.8 0c.6 0 .6 1.5.7 1.6a5.08 5.08 0 0 0 3.1 2.8c.5.1-.5 1.1-1.2 1.4s-1.3.4-1.4 1.1 1 .3 1.3.4 1.5.6 1.9-.1c.5-.7 2.5-.4 2.3-1.2-.4-1.6 2.3-2.4 1.5-3.4a6.8 6.8 0 0 1-.2-1.8 7.8 7.8 0 0 1 .9 3.7 8.283 8.283 0 0 1-8.2 8.1"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.